summary refs log tree commit diff
path: root/src/test/ui/if/if-without-block.rs
blob: 3dde0ed7c7188dcc833db83e8fbf65ab7fce4f47 (plain)
1
2
3
4
5
6
7
8
9
fn main() {
    let n = 1;
    if 5 == {
    //~^ NOTE this `if` statement has a condition, but no block
        println!("five");
    }
}
//~^ ERROR expected `{`, found `}`
//~| NOTE expected `{`