rust/tests/ui/missing/missing-comma-in-match.rs
2023-01-11 09:32:08 +00:00

12 lines
269 B
Rust

// run-rustfix
fn main() {
match &Some(3) {
&None => 1
&Some(2) => { 3 }
//~^ ERROR expected one of `,`, `.`, `?`, `}`, or an operator, found `=>`
//~| NOTE expected one of `,`, `.`, `?`, `}`, or an operator
_ => 2
};
}