]> git.lizzy.rs Git - rust.git/blob - src/test/ui/numeric/numeric-cast-2.stderr
Rollup merge of #94577 - RalfJung:simd-miri, r=scottmcm
[rust.git] / src / test / ui / numeric / numeric-cast-2.stderr
1 error[E0308]: mismatched types
2   --> $DIR/numeric-cast-2.rs:5:18
3    |
4 LL |     let x: u16 = foo();
5    |            ---   ^^^^^ expected `u16`, found `i32`
6    |            |
7    |            expected due to this
8    |
9 help: you can convert an `i32` to a `u16` and panic if the converted value doesn't fit
10    |
11 LL |     let x: u16 = foo().try_into().unwrap();
12    |                       ++++++++++++++++++++
13
14 error[E0308]: mismatched types
15   --> $DIR/numeric-cast-2.rs:7:18
16    |
17 LL |     let y: i64 = x + x;
18    |            ---   ^^^^^ expected `i64`, found `u16`
19    |            |
20    |            expected due to this
21    |
22 help: you can convert a `u16` to an `i64`
23    |
24 LL |     let y: i64 = (x + x).into();
25    |                  +     ++++++++
26
27 error[E0308]: mismatched types
28   --> $DIR/numeric-cast-2.rs:9:18
29    |
30 LL |     let z: i32 = x + x;
31    |            ---   ^^^^^ expected `i32`, found `u16`
32    |            |
33    |            expected due to this
34    |
35 help: you can convert a `u16` to an `i32`
36    |
37 LL |     let z: i32 = (x + x).into();
38    |                  +     ++++++++
39
40 error: aborting due to 3 previous errors
41
42 For more information about this error, try `rustc --explain E0308`.