]> git.lizzy.rs Git - rust.git/blob - src/test/ui/if/if-without-else-result.rs
Remove E0308 note when primary label has all info
[rust.git] / src / test / ui / if / if-without-else-result.rs
1 fn main() {
2     let a = if true { true };
3     //~^ ERROR if may be missing an else clause [E0317]
4     //~| expected (), found bool
5     println!("{}", a);
6 }