summaryrefslogtreecommitdiffstats
path: root/src/test/ui/feature-gates/feature-gate-exhaustive-patterns.rs
blob: f0cc9ea70550e6a7cf8483d35a0869a48ff4282b (plain)
1
2
3
4
5
6
7
8
9
#![feature(never_type)]

fn foo() -> Result<u32, !> {
    Ok(123)
}

fn main() {
    let Ok(_x) = foo(); //~ ERROR refutable pattern in local binding
}