Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
run-pass
/
expr-empty-ret.rs
blob: 42bf4bd973bebb6b0da72572a3c7ebbf25b2323c [
file
] [
log
] [
blame
]
// Issue #521
fn
f
()
{
let
x
=
match
true
{
true
=>
{
10
}
false
=>
{
return
}
};
}
fn
main
()
{
}