summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unnecessary_cast.stderr
blob: f7829ff3b0efd049d72f7619bcdeb6e7708b1d8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
error: casting integer literal to `i32` is unnecessary
  --> $DIR/unnecessary_cast.rs:14:5
   |
LL |     1i32 as i32;
   |     ^^^^^^^^^^^ help: try: `1_i32`
   |
   = note: `-D clippy::unnecessary-cast` implied by `-D warnings`

error: casting float literal to `f32` is unnecessary
  --> $DIR/unnecessary_cast.rs:15:5
   |
LL |     1f32 as f32;
   |     ^^^^^^^^^^^ help: try: `1_f32`

error: casting to the same type is unnecessary (`bool` -> `bool`)
  --> $DIR/unnecessary_cast.rs:16:5
   |
LL |     false as bool;
   |     ^^^^^^^^^^^^^ help: try: `false`

error: casting integer literal to `i32` is unnecessary
  --> $DIR/unnecessary_cast.rs:19:5
   |
LL |     -1_i32 as i32;
   |     ^^^^^^^^^^^^^ help: try: `-1_i32`

error: casting integer literal to `i32` is unnecessary
  --> $DIR/unnecessary_cast.rs:20:5
   |
LL |     - 1_i32 as i32;
   |     ^^^^^^^^^^^^^^ help: try: `- 1_i32`

error: casting float literal to `f32` is unnecessary
  --> $DIR/unnecessary_cast.rs:21:5
   |
LL |     -1f32 as f32;
   |     ^^^^^^^^^^^^ help: try: `-1_f32`

error: casting integer literal to `i32` is unnecessary
  --> $DIR/unnecessary_cast.rs:22:5
   |
LL |     1_i32 as i32;
   |     ^^^^^^^^^^^^ help: try: `1_i32`

error: casting float literal to `f32` is unnecessary
  --> $DIR/unnecessary_cast.rs:23:5
   |
LL |     1_f32 as f32;
   |     ^^^^^^^^^^^^ help: try: `1_f32`

error: casting integer literal to `f32` is unnecessary
  --> $DIR/unnecessary_cast.rs:53:9
   |
LL |         100 as f32;
   |         ^^^^^^^^^^ help: try: `100_f32`

error: casting integer literal to `f64` is unnecessary
  --> $DIR/unnecessary_cast.rs:54:9
   |
LL |         100 as f64;
   |         ^^^^^^^^^^ help: try: `100_f64`

error: casting integer literal to `f64` is unnecessary
  --> $DIR/unnecessary_cast.rs:55:9
   |
LL |         100_i32 as f64;
   |         ^^^^^^^^^^^^^^ help: try: `100_f64`

error: casting integer literal to `f32` is unnecessary
  --> $DIR/unnecessary_cast.rs:56:17
   |
LL |         let _ = -100 as f32;
   |                 ^^^^^^^^^^^ help: try: `-100_f32`

error: casting integer literal to `f64` is unnecessary
  --> $DIR/unnecessary_cast.rs:57:17
   |
LL |         let _ = -100 as f64;
   |                 ^^^^^^^^^^^ help: try: `-100_f64`

error: casting integer literal to `f64` is unnecessary
  --> $DIR/unnecessary_cast.rs:58:17
   |
LL |         let _ = -100_i32 as f64;
   |                 ^^^^^^^^^^^^^^^ help: try: `-100_f64`

error: casting float literal to `f32` is unnecessary
  --> $DIR/unnecessary_cast.rs:59:9
   |
LL |         100. as f32;
   |         ^^^^^^^^^^^ help: try: `100_f32`

error: casting float literal to `f64` is unnecessary
  --> $DIR/unnecessary_cast.rs:60:9
   |
LL |         100. as f64;
   |         ^^^^^^^^^^^ help: try: `100_f64`

error: casting integer literal to `u32` is unnecessary
  --> $DIR/unnecessary_cast.rs:72:9
   |
LL |         1 as u32;
   |         ^^^^^^^^ help: try: `1_u32`

error: casting integer literal to `i32` is unnecessary
  --> $DIR/unnecessary_cast.rs:73:9
   |
LL |         0x10 as i32;
   |         ^^^^^^^^^^^ help: try: `0x10_i32`

error: casting integer literal to `usize` is unnecessary
  --> $DIR/unnecessary_cast.rs:74:9
   |
LL |         0b10 as usize;
   |         ^^^^^^^^^^^^^ help: try: `0b10_usize`

error: casting integer literal to `u16` is unnecessary
  --> $DIR/unnecessary_cast.rs:75:9
   |
LL |         0o73 as u16;
   |         ^^^^^^^^^^^ help: try: `0o73_u16`

error: casting integer literal to `u32` is unnecessary
  --> $DIR/unnecessary_cast.rs:76:9
   |
LL |         1_000_000_000 as u32;
   |         ^^^^^^^^^^^^^^^^^^^^ help: try: `1_000_000_000_u32`

error: casting float literal to `f64` is unnecessary
  --> $DIR/unnecessary_cast.rs:78:9
   |
LL |         1.0 as f64;
   |         ^^^^^^^^^^ help: try: `1.0_f64`

error: casting float literal to `f32` is unnecessary
  --> $DIR/unnecessary_cast.rs:79:9
   |
LL |         0.5 as f32;
   |         ^^^^^^^^^^ help: try: `0.5_f32`

error: casting integer literal to `i32` is unnecessary
  --> $DIR/unnecessary_cast.rs:83:17
   |
LL |         let _ = -1 as i32;
   |                 ^^^^^^^^^ help: try: `-1_i32`

error: casting float literal to `f32` is unnecessary
  --> $DIR/unnecessary_cast.rs:84:17
   |
LL |         let _ = -1.0 as f32;
   |                 ^^^^^^^^^^^ help: try: `-1.0_f32`

error: casting integer literal to `i32` is unnecessary
  --> $DIR/unnecessary_cast.rs:93:22
   |
LL |         let _: i32 = -(1) as i32;
   |                      ^^^^^^^^^^^ help: try: `-1_i32`

error: casting integer literal to `i64` is unnecessary
  --> $DIR/unnecessary_cast.rs:95:22
   |
LL |         let _: i64 = -(1) as i64;
   |                      ^^^^^^^^^^^ help: try: `-1_i64`

error: aborting due to 27 previous errors