blob: 2b3a59f21412fa2e7ff57d977327e0bf215a5d01 [file] [log] [blame]
//! regression test for https://github.com/rust-lang/rust/issues/18110
//@ run-pass
#![allow(unreachable_code)]
fn main() {
({ return },);
}