7 lines
146 B
Rust
7 lines
146 B
Rust
//! regression test for https://github.com/rust-lang/rust/issues/18110
|
|
//@ run-pass
|
|
#![allow(unreachable_code)]
|
|
|
|
fn main() {
|
|
({ return },);
|
|
}
|