rust/tests/ui/hygiene/auxiliary/needs_hygiene.rs

6 lines
68 B
Rust

#![feature(decl_macro)]
macro x() { struct MyStruct; }
x!();
x!();