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

8 lines
71 B
Rust

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