rust/src/test/ui/parser/bad-match.rs
2019-08-24 21:53:55 +02:00

5 lines
108 B
Rust

fn main() {
let isize x = 5; //~ ERROR expected one of `:`, `;`, `=`, `@`, or `|`, found `x`
match x;
}