]> git.lizzy.rs Git - rust.git/blob - src/test/ui/meta/meta-expected-error-wrong-rev.a.stderr
Apply c_enum_min_bits = 8 to (arm|thumb)-none- platforms
[rust.git] / src / test / ui / meta / meta-expected-error-wrong-rev.a.stderr
1 error[E0308]: mismatched types
2   --> $DIR/meta-expected-error-wrong-rev.rs:13:18
3    |
4 LL |     let x: u32 = 22_usize;
5    |            ---   ^^^^^^^^ expected `u32`, found `usize`
6    |            |
7    |            expected due to this
8    |
9 help: change the type of the numeric literal from `usize` to `u32`
10    |
11 LL |     let x: u32 = 22_u32;
12    |                  ^^^^^^
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0308`.