blob: 13add4652d9946b0564bb5b7b9dc82094d46a19e [file] [log] [blame]
//@ run-pass
#![allow(unreachable_code)]
fn main() {
return ();
let x = ();
x
}
// https://github.com/rust-lang/rust/issues/24353