summary refs log tree commit diff
path: root/src/test/ui/issues/issue-16149.rs
blob: 7f0cad96a58dfbada11d1011617f36b840895e33 (plain)
1
2
3
4
5
6
7
8
9
10
11
extern {
    static externalValue: isize;
}

fn main() {
    let boolValue = match 42 {
        externalValue => true,
        //~^ ERROR match bindings cannot shadow statics
        _ => false
    };
}