1 2 3 4 5 6 7 8 9 10
//@ run-pass #![allow(unreachable_code)] fn main() { return (); let x = (); x } // https://github.com/rust-lang/rust/issues/24353