Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
binding
/
match-bot-2.rs
blob: 014247417a6d9de26eee17570095ebee8752b070 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
();
}