aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/name_resolution13.rs
blob: 33edbf9312e26f37b4a9056fd19647d61ee71089 (plain)
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 }
    }
}