Sign in
rust
/
rust
/
97600964b5f19f3d7a0ab32e820e4fed1322770e
/
.
/
tests
/
ui
/
parser
/
bad-match.rs
blob: 04100d1701ddb8f94854115c4a67f32e1daf10ca [
file
]
fn
main
()
{
let
isize x
=
5
;
//~ ERROR expected one of `:`, `;`, `=`, `@`, or `|`, found `x`
match
x
;
}