Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
suggestions
/
issue-83892.fixed
blob: b9a622c62f6d253fb44ab307b9d001ceb7a8b1a9 [
file
]
//@ run-rustfix
fn func
()
->
u8
{
0
}
fn main
()
{
match
()
{
()
=>
func
()
//~ ERROR mismatched types
};
}