1 2 3 4 5 6 7 8 9 10 11 12 13
// { dg-options "-frust-name-resolution-2.0" } pub mod foo { pub macro bar() {} } fn foo() { let b = 10; fn bar() { let c = b; // { dg-error "cannot find value .b. in this scope .E0425." "" { target *-*-* } .-1 } } }