]> git.proxmox.com Git - rustc.git/blob - src/test/ui/expr/if/if-branch-types.stderr
New upstream version 1.65.0+dfsg1
[rustc.git] / src / test / ui / expr / if / if-branch-types.stderr
1 error[E0308]: `if` and `else` have incompatible types
2 --> $DIR/if-branch-types.rs:2:38
3 |
4 LL | let x = if true { 10i32 } else { 10u32 };
5 | ----- ^^^^^ expected `i32`, found `u32`
6 | |
7 | expected because of this
8 |
9 help: change the type of the numeric literal from `u32` to `i32`
10 |
11 LL | let x = if true { 10i32 } else { 10i32 };
12 | ~~~
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0308`.