fn baz() -> ! { fail; } fn foo() { match Some::(5) { Some::(x) => { let mut bar; match None:: { None:: => { bar = 5; } _ => { baz(); } } log(debug, bar); } None:: => { debug!("hello"); } } } fn main() { foo(); }