rust/tests/ui/parser/bad-match.rs

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

5 lines
108 B
Rust
Raw Normal View History

2011-07-27 07:48:34 -05:00
fn main() {
let isize x = 5; //~ ERROR expected one of `:`, `;`, `=`, `@`, or `|`, found `x`
2012-08-06 14:34:08 -05:00
match x;
2011-07-27 07:48:34 -05:00
}