about summary refs log tree commit diff
path: root/tests/ui/binding/match-bot-2.rs
blob: 014247417a6d9de26eee17570095ebee8752b070 (plain)
1
2
3
4
5
6
//@ 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(); }