]> git.lizzy.rs Git - rust.git/blob - src/test/ui/typeof/type_mismatch.stderr
Auto merge of #95399 - gilescope:plan_b, r=scottmcm
[rust.git] / src / test / ui / typeof / type_mismatch.stderr
1 error[E0516]: `typeof` is a reserved keyword but unimplemented
2   --> $DIR/type_mismatch.rs:5:12
3    |
4 LL |     let b: typeof(a) = 1i8;
5    |            ^^^^^^^^^ reserved keyword
6    |
7 help: consider replacing `typeof(...)` with an actual type
8    |
9 LL |     let b: u8 = 1i8;
10    |            ~~
11
12 error[E0308]: mismatched types
13   --> $DIR/type_mismatch.rs:5:24
14    |
15 LL |     let b: typeof(a) = 1i8;
16    |            ---------   ^^^ expected `u8`, found `i8`
17    |            |
18    |            expected due to this
19    |
20 help: change the type of the numeric literal from `i8` to `u8`
21    |
22 LL |     let b: typeof(a) = 1u8;
23    |                         ~~
24
25 error: aborting due to 2 previous errors
26
27 Some errors have detailed explanations: E0308, E0516.
28 For more information about an error, try `rustc --explain E0308`.