6 lines
73 B
Rust
6 lines
73 B
Rust
//@ run-pass
|
|
#![allow(unreachable_code)]
|
|
|
|
fn main() {
|
|
({return},);
|
|
}
|