rust/tests/ui/types.stderr

11 lines
299 B
Plaintext
Raw Normal View History

2017-12-23 12:15:11 -06:00
error: casting i32 to i64 may become silently lossy if types change
--> $DIR/types.rs:9:23
|
9 | let c_i64 : i64 = c as i64;
| ^^^^^^^^ help: try: `i64::from(c)`
|
= note: `-D clippy::cast-lossless` implied by `-D warnings`
2017-12-23 12:15:11 -06:00
2018-01-16 10:06:27 -06:00
error: aborting due to previous error