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