Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
test
/
ui
/
expr-empty-ret.rs
blob: ce8ffaf94d063e53d72d1b426442dc6b544797b3 [
file
] [
log
] [
blame
]
// run-pass
#![
allow
(
dead_code
)]
// Issue #521
// pretty-expanded FIXME #23616
fn
f
()
{
let
_x
=
match
true
{
true
=>
{
10
}
false
=>
{
return
}
};
}
pub
fn
main
()
{
}