]> git.lizzy.rs Git - rust.git/blob - src/test/ui/if/if-without-else-result.stderr
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / if / if-without-else-result.stderr
1 error[E0317]: if may be missing an else clause
2   --> $DIR/if-without-else-result.rs:2:13
3    |
4 LL |     let a = if true { true };
5    |             ^^^^^^^^^^^^^^^^ expected (), found bool
6    |
7    = note: expected type `()`
8               found type `bool`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0317`.