12 lines
127 B
Rust
12 lines
127 B
Rust
|
//@ run-rustfix
|
||
|
|
||
|
fn func() -> u8 {
|
||
|
0
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
match () {
|
||
|
() => func() //~ ERROR mismatched types
|
||
|
}
|
||
|
}
|