rustc/tests/ui/hygiene/auxiliary/needs_hygiene.rs
2023-08-02 10:33:26 +02:00

6 lines
68 B
Rust

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