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 08:17:02 -05:00
fn main() {
let x = Some(1);
2016-10-02 08:45:06 -05:00
match x { } //~ ERROR E0004
2016-05-12 08:17:02 -05:00
}