about summary refs log tree commit diff
path: root/tests/ui/destructuring-assignment/non-exhaustive-destructure.rs
blob: 39939f2bad63496566a1a1007693ebe05419f3fd (plain)
1
2
3
4
fn main() {
    None = Some(3);
    //~^ ERROR refutable pattern in local binding
}