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
|
|
}
|