Skip to content

Commit a6bb32c

Browse files
committed
updated stderr for tests/ui/cast
1 parent 2f2ebaf commit a6bb32c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/ui/cast.stderr

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,19 +159,19 @@ LL | false as bool;
159159
| ^^^^^^^^^^^^^
160160

161161
error: casting integer literal to f32 is unnecessary
162-
--> $DIR/cast.rs:62:5
162+
--> $DIR/cast.rs:64:5
163163
|
164164
LL | 100 as f32;
165165
| ^^^^^^^^^^ help: try: `100_f32`
166166

167167
error: casting integer literal to f64 is unnecessary
168-
--> $DIR/cast.rs:63:5
168+
--> $DIR/cast.rs:65:5
169169
|
170170
LL | 100 as f64;
171171
| ^^^^^^^^^^ help: try: `100_f64`
172172

173173
error: casting integer literal to f64 is unnecessary
174-
--> $DIR/cast.rs:64:5
174+
--> $DIR/cast.rs:66:5
175175
|
176176
LL | 100_i32 as f64;
177177
| ^^^^^^^^^^^^^^ help: try: `100_f64`

0 commit comments

Comments
 (0)