rust-clippy/tests/ui/unnecessary_cast_fixable.stderr

53 lines
1.4 KiB
Text
Raw Normal View History

2020-01-06 06:36:33 +00:00
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`
2020-01-06 06:36:33 +00:00
error: casting integer literal to `f64` is unnecessary
--> $DIR/unnecessary_cast_fixable.rs:9:5
|
LL | 100 as f64;
| ^^^^^^^^^^ help: try: `100_f64`
2020-01-06 06:36:33 +00:00
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: casting integer literal to `u32` is unnecessary
--> $DIR/unnecessary_cast_fixable.rs:22:5
|
LL | 1 as u32;
| ^^^^^^^^ help: try: `1_u32`
error: casting integer literal to `i32` is unnecessary
--> $DIR/unnecessary_cast_fixable.rs:23:5
|
LL | 0x10 as i32;
| ^^^^^^^^^^^ help: try: `16_i32`
error: casting integer literal to `usize` is unnecessary
--> $DIR/unnecessary_cast_fixable.rs:24:5
|
LL | 0b10 as usize;
| ^^^^^^^^^^^^^ help: try: `2_usize`
error: casting float literal to `f64` is unnecessary
--> $DIR/unnecessary_cast_fixable.rs:26:5
|
LL | 1.0 as f64;
| ^^^^^^^^^^ help: try: `1.0_f64`
error: casting float literal to `f32` is unnecessary
--> $DIR/unnecessary_cast_fixable.rs:27:5
|
LL | 0.5 as f32;
| ^^^^^^^^^^ help: try: `0.5_f32`
error: aborting due to 8 previous errors