rust/tests/ui/reachable/expr_if.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
571 B
Rust
Raw Normal View History

#![allow(unused_variables)]
#![allow(unused_assignments)]
#![allow(dead_code)]
#![deny(unreachable_code)]
fn foo() {
2021-08-08 14:49:13 +00:00
if {return} { //~ ERROR unreachable block in `if`
println!("Hello, world!");
}
}
fn bar() {
if {true} {
return;
}
println!("I am not dead.");
}
fn baz() {
if {true} {
return;
} else {
return;
}
// As the next action to be taken after the if arms, we should
// report the `println!` as unreachable:
println!("But I am.");
//~^ ERROR unreachable statement
}
fn main() { }