1
Fork 0
rust/src/test/ui/if/if-without-block.rs

10 lines
197 B
Rust
Raw Normal View History

fn main() {
let n = 1;
if 5 == {
//~^ NOTE this `if` statement has a condition, but no block
println!("five");
}
}
//~^ ERROR expected `{`, found `}`
//~| NOTE expected `{`