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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
127 B
Rust
Raw Normal View History

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