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