Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
suggestions
/
issue-83892.fixed
blob: b9a622c62f6d253fb44ab307b9d001ceb7a8b1a9 [
file
] [
log
] [
blame
] [
edit
]
//@ run-rustfix
fn func
()
->
u8
{
0
}
fn main
()
{
match
()
{
()
=>
func
()
//~ ERROR mismatched types
};
}