1 2 3 4 5 6 7 8 9 10 11
// { dg-options "-frust-name-resolution-2.0" } pub mod foo { pub macro bar() {} } use foo::bar; fn main() { bar!(); }