rust/src/test/ui/missing/missing-comma-in-match.fixed
2018-12-25 21:08:33 -07:00

11 lines
275 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 here
_ => 2
};
}