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

17 lines
478 B
Plaintext
Raw Normal View History

2020-12-28 17:15:16 +00:00
error[E0308]: mismatched types
2022-04-01 17:13:25 +00:00
--> $DIR/meta-expected-error-wrong-rev.rs:13:18
2020-12-28 17:15:16 +00: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 17:15:16 +00:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.