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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
68 B
Rust
Raw Normal View History

2020-03-17 10:45:02 -05:00
#![feature(decl_macro)]
macro x() { struct MyStruct; }
x!();
x!();