mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
18 lines
233 B
Rust
18 lines
233 B
Rust
// check-pass
|
|
// ignore-pretty pretty-printing is unhygienic
|
|
|
|
#![feature(decl_macro)]
|
|
#![allow(unused)]
|
|
|
|
macro m($S:ident, $x:ident) {
|
|
$S { $x: 0 }
|
|
}
|
|
|
|
mod foo {
|
|
struct S { x: i32 }
|
|
|
|
fn f() { ::m!(S, x); }
|
|
}
|
|
|
|
fn main() {}
|