Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
liveness
/
liveness-missing-ret2.rs
blob: a18669f725e314a438442a67489f93081983b358 [
file
] [
log
] [
blame
] [
edit
]
fn
f
()
->
isize
{
//~ ERROR mismatched types
// Make sure typestate doesn't interpret this match expression as
// the function result
match
true
{
true
=>
{
}
_
=>
{}
};
}
fn
main
()
{
}