mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-02 07:09:22 +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
|
|
}
|