mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +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
563 B
Text
22 lines
563 B
Text
error: casting to the same type is unnecessary (`i32` -> `i32`)
|
|
--> $DIR/unnecessary_cast.rs:6:5
|
|
|
|
|
LL | 1i32 as i32;
|
|
| ^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::unnecessary-cast` implied by `-D warnings`
|
|
|
|
error: casting to the same type is unnecessary (`f32` -> `f32`)
|
|
--> $DIR/unnecessary_cast.rs:7:5
|
|
|
|
|
LL | 1f32 as f32;
|
|
| ^^^^^^^^^^^
|
|
|
|
error: casting to the same type is unnecessary (`bool` -> `bool`)
|
|
--> $DIR/unnecessary_cast.rs:8:5
|
|
|
|
|
LL | false as bool;
|
|
| ^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|