Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
suggestions
/
match-needing-semi.rs
blob: 833555d0e406e95e8b36f1a832223ba1ad43057d [
file
] [
log
] [
blame
] [
edit
]
// check-only
fn
main
()
{
match
3
{
4
=>
1
,
3
=>
{
foo
()
//~ ERROR mismatched types
}
_
=>
2
}
match
3
{
//~ ERROR mismatched types
4
=>
1
,
3
=>
2
,
_
=>
2
}
let
_
=
();
}
fn
foo
()
->
i32
{
42
}