]> git.proxmox.com Git - rustc.git/blob - src/test/ui/meta-expected-error-correct-rev.a.stderr
New upstream version 1.36.0+dfsg1
[rustc.git] / src / test / ui / meta-expected-error-correct-rev.a.stderr
1 error[E0308]: mismatched types
2 --> $DIR/meta-expected-error-correct-rev.rs:7:18
3 |
4 LL | let x: u32 = 22_usize;
5 | ^^^^^^^^ expected u32, found usize
6 help: change the type of the numeric literal from `usize` to `u32`
7 |
8 LL | let x: u32 = 22_u32;
9 | ^^^^^^
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0308`.