rust/tests/ui/suggestions/issue-83892.fixed

12 lines
128 B
Rust

//@ run-rustfix
fn func() -> u8 {
0
}
fn main() {
match () {
() => func() //~ ERROR mismatched types
};
}