2018-07-15 16:11:54 -05:00
|
|
|
error[E0308]: mismatched types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-13359.rs:6:9
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | foo(1*(1 as isize));
|
|
|
|
| ^^^^^^^^^^^^^^ expected i16, found isize
|
2019-05-03 12:41:26 -05:00
|
|
|
help: you can convert an `isize` to `i16` and panic if the converted value wouldn't fit
|
2019-04-21 17:44:23 -05:00
|
|
|
|
|
|
|
|
LL | foo((1*(1 as isize)).try_into().unwrap());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-13359.rs:10:9
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | bar(1*(1 as usize));
|
|
|
|
| ^^^^^^^^^^^^^^ expected u32, found usize
|
2019-05-03 12:41:26 -05:00
|
|
|
help: you can convert an `usize` to `u32` and panic if the converted value wouldn't fit
|
2019-04-21 17:44:23 -05:00
|
|
|
|
|
|
|
|
LL | bar((1*(1 as usize)).try_into().unwrap());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|