mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
25 lines
247 B
Rust
25 lines
247 B
Rust
// run-pass
|
|
// aux-build:not-joint.rs
|
|
|
|
extern crate not_joint as bar;
|
|
use bar::{tokens, nothing};
|
|
|
|
tokens![< -];
|
|
|
|
#[nothing]
|
|
a![< -];
|
|
|
|
#[nothing]
|
|
b!{< -}
|
|
|
|
#[nothing]
|
|
c!(< -);
|
|
|
|
#[nothing]
|
|
fn foo() {
|
|
//! dox
|
|
let x = 2 < - 3;
|
|
}
|
|
|
|
fn main() {}
|