summaryrefslogtreecommitdiffstats
path: root/src/test/ui/expr/if/if-without-else-result.rs
blob: cf84a99e53fa113b2eee3795bd8c635cd146c198 (plain)
1
2
3
4
5
6
fn main() {
    let a = if true { true };
    //~^ ERROR `if` may be missing an `else` clause [E0317]
    //~| expected `()`, found `bool`
    println!("{}", a);
}