mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
2d84d0361d
This splits up the cast.rs tests and enables rustfix tests for the part of the `unnecessary_cast` lint that emits `MachineApplicable` suggestions. cc #3630
22 lines
614 B
Text
22 lines
614 B
Text
error: casting integer literal to f32 is unnecessary
|
|
--> $DIR/unnecessary_cast_fixable.rs:8:5
|
|
|
|
|
LL | 100 as f32;
|
|
| ^^^^^^^^^^ help: try: `100_f32`
|
|
|
|
|
= note: `-D clippy::unnecessary-cast` implied by `-D warnings`
|
|
|
|
error: casting integer literal to f64 is unnecessary
|
|
--> $DIR/unnecessary_cast_fixable.rs:9:5
|
|
|
|
|
LL | 100 as f64;
|
|
| ^^^^^^^^^^ help: try: `100_f64`
|
|
|
|
error: casting integer literal to f64 is unnecessary
|
|
--> $DIR/unnecessary_cast_fixable.rs:10:5
|
|
|
|
|
LL | 100_i32 as f64;
|
|
| ^^^^^^^^^^^^^^ help: try: `100_f64`
|
|
|
|
error: aborting due to 3 previous errors
|
|
|