2020-01-06 00:36:33 -06:00
|
|
|
error: casting `i32` to `i64` may become silently lossy if you later change the type
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/types.rs:12:22
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let c_i64: i64 = c as i64;
|
2018-12-09 23:27:19 -06:00
|
|
|
| ^^^^^^^^ help: try: `i64::from(c)`
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
|
|
|
= note: `-D clippy::cast-lossless` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::cast_lossless)]`
|
2017-12-23 12:15:11 -06:00
|
|
|
|
2023-11-21 11:08:42 -06:00
|
|
|
error: aborting due to 1 previous error
|
2018-01-16 10:06:27 -06:00
|
|
|
|