Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
test
/
ui
/
binding
/
match-bot-2.rs
blob: 95b3406f0b579b8498a1643c7297d24157041b55 [
file
] [
log
] [
blame
]
// run-pass
#![
allow
(
unreachable_code
)]
// n.b. This was only ever failing with optimization disabled.
fn
a
()
->
isize
{
match
return
1
{
2
=>
3
,
_
=>
panic
!()
}
}
pub
fn
main
()
{
a
();
}