rust/tests/ui/error-codes/E0004-2.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
68 B
Rust
Raw Normal View History

2016-05-12 15:17:02 +02:00
fn main() {
let x = Some(1);
2016-10-02 15:45:06 +02:00
match x { } //~ ERROR E0004
2016-05-12 15:17:02 +02:00
}