summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0301.rs
blob: 3b451801c99df5983106f8a6d1cb1212dcfbc354 (plain)
1
2
3
4
5
6
7
fn main() {
    match Some(()) {
        None => { },
        option if option.take().is_none() => {}, //~ ERROR E0301
        Some(_) => { } //~^ ERROR E0596
    }
}