rust/tests/ui/parser/issues/recover-ge-as-fat-arrow.fixed
2024-02-16 20:02:50 +00:00

8 lines
122 B
Rust

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