rust/tests/ui/parser/issues/recover-ge-as-fat-arrow.fixed

8 lines
122 B
Rust

//@ run-rustfix
fn main() {
match 1 {
1 => {} //~ ERROR
_ => { let _: u16 = 2u16; } //~ ERROR
}
}