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