mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-17 07:26:04 +00:00
7 lines
116 B
Rust
7 lines
116 B
Rust
#![deny(unreachable_code)]
|
|
|
|
fn main() {
|
|
return;
|
|
println!("Paul is dead"); //~ ERROR unreachable statement
|
|
}
|