// run-pass
// aux-build:not-joint.rs
extern crate not_joint as bar;
use bar::{tokens, nothing};
tokens![< -];
#[nothing]
a![< -];
b!{< -}
c!(< -);
fn foo() {
//! dox
let x = 2 < - 3;
}
fn main() {}