mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 04:27:38 +00:00
10 lines
164 B
Rust
10 lines
164 B
Rust
// ignore-test FIXME(#20574)
|
|
|
|
#![deny(unreachable_code)]
|
|
|
|
fn main() {
|
|
let x = || panic!();
|
|
x();
|
|
println!("Foo bar"); //~ ERROR: unreachable statement
|
|
}
|