rust/src/test/ui/missing/missing-comma-in-match.fixed
2019-11-06 17:26:20 -08:00

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
};
}