rust/src/test/ui/suggestions/match-needing-semi.fixed
2019-09-28 09:56:28 -07:00

19 lines
273 B
Rust

// check-only
// run-rustfix
fn main() {
match 3 {
4 => 1,
3 => {
2 //~ ERROR mismatched types
}
_ => 2
};
match 3 { //~ ERROR mismatched types
4 => 1,
3 => 2,
_ => 2
};
let _ = ();
}