mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
21 lines
234 B
Rust
21 lines
234 B
Rust
// check-pass
|
|
|
|
#![feature(decl_macro)]
|
|
#![allow(unused)]
|
|
|
|
mod foo {
|
|
pub macro m($s:tt, $i:tt) {
|
|
$s.$i
|
|
}
|
|
}
|
|
|
|
mod bar {
|
|
struct S(i32);
|
|
fn f() {
|
|
let s = S(0);
|
|
::foo::m!(s, 0);
|
|
}
|
|
}
|
|
|
|
fn main() {}
|