mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 06:34:22 +00:00
21 lines
235 B
Rust
21 lines
235 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() {}
|