rust/tests/ui/parser/recover/recover-parens-around-match-arm-head.rs

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

15 lines
447 B
Rust
Raw Normal View History

fn main() {
let val = 42;
let x = match val {
(0 if true) => {
//~^ ERROR expected identifier, found keyword `if`
//~| ERROR expected one of `)`, `,`, `...`, `..=`, `..`, or `|`, found keyword `if`
//~| ERROR expected one of `)`, `,`, `@`, or `|`, found keyword `true`
//~| ERROR mismatched types
42u8
}
_ => 0u8,
};
let _y: u32 = x; //~ ERROR mismatched types
2023-11-06 13:56:45 -06:00
}