]> git.lizzy.rs Git - rust.git/blob - src/test/ui/typeof/type_mismatch.stderr
Merge commit 'e329249b6a3a98830d860c74c8234a8dd9407436' into clippyup
[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 error[E0308]: mismatched types
8   --> $DIR/type_mismatch.rs:5:24
9    |
10 LL |     let b: typeof(a) = 1i8;
11    |            ---------   ^^^ expected `u8`, found `i8`
12    |            |
13    |            expected due to this
14    |
15 help: change the type of the numeric literal from `i8` to `u8`
16    |
17 LL |     let b: typeof(a) = 1u8;
18    |                         ~~
19
20 error: aborting due to 2 previous errors
21
22 Some errors have detailed explanations: E0308, E0516.
23 For more information about an error, try `rustc --explain E0308`.