summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0004-2.rs
blob: c7612fd50a74efd8782168c60c95e0d8a2c07110 (plain)
1
2
3
4
5
fn main() {
    let x = Some(1);

    match x { } //~ ERROR E0004
}