mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-25 17:47:41 +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
|