rust/tests/ui/missing/missing-comma-in-match.rs

12 lines
270 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
};
}