rust/src/test/ui/meta-expected-error-correct-rev.a.stderr

17 lines
479 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/meta-expected-error-correct-rev.rs:7:18
2018-08-08 07:28:26 -05:00
|
LL | let x: u32 = 22_usize;
| --- ^^^^^^^^ expected `u32`, found `usize`
| |
| expected due to this
|
2019-04-21 17:44:23 -05:00
help: change the type of the numeric literal from `usize` to `u32`
|
LL | let x: u32 = 22_u32;
| ^^^^^^
2018-08-08 07:28:26 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.