mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00
11 lines
144 B
Rust
11 lines
144 B
Rust
//@ run-pass
|
|
#![allow(unreachable_code)]
|
|
fn main() {
|
|
return ();
|
|
|
|
let x = ();
|
|
x
|
|
}
|
|
|
|
// https://github.com/rust-lang/rust/issues/24353
|