summaryrefslogtreecommitdiffstats
path: root/src/test/ui/binding/match-bot-2.rs
blob: 95b3406f0b579b8498a1643c7297d24157041b55 (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(); }