rust/tests/ui/meta/meta-expected-error-wrong-rev.a.stderr

17 lines
480 B
Plaintext
Raw Normal View History

2020-12-28 11:15:16 -06:00
error[E0308]: mismatched types
2022-04-01 12:13:25 -05:00
--> $DIR/meta-expected-error-wrong-rev.rs:13:18
2020-12-28 11:15:16 -06:00
|
LL | let x: u32 = 22_usize;
| --- ^^^^^^^^ expected `u32`, found `usize`
| |
| expected due to this
|
help: change the type of the numeric literal from `usize` to `u32`
|
LL | let x: u32 = 22_u32;
| ~~~
2020-12-28 11:15:16 -06:00
error: aborting due to 1 previous error
2020-12-28 11:15:16 -06:00
For more information about this error, try `rustc --explain E0308`.