rust/tests/ui/types.stderr

11 lines
317 B
Plaintext
Raw Normal View History

error: casting i32 to i64 may become silently lossy if you later change the type
2019-01-14 02:57:19 +08:00
--> $DIR/types.rs:13:22
2018-10-07 00:18:06 +08:00
|
2018-12-27 23:57:55 +08:00
LL | let c_i64: i64 = c as i64;
2018-12-10 13:27:19 +08:00
| ^^^^^^^^ help: try: `i64::from(c)`
2018-10-07 00:18:06 +08:00
|
= note: `-D clippy::cast-lossless` implied by `-D warnings`
2017-12-24 02:15:11 +08:00
2018-01-17 00:06:27 +08:00
error: aborting due to previous error