rust/tests/ui/types.stderr

11 lines
321 B
Plaintext
Raw Normal View History

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