Skip to content

Commit 6f681c2

Browse files
committed
Fix line numbers in ui test
1 parent bff4795 commit 6f681c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/ui/cast-to-unsized-trait-object-suggestion.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ error: cast to unsized type: `&{integer}` as `std::marker::Send`
77
| help: try casting to a reference instead: `&Send`
88

99
error: cast to unsized type: `std::boxed::Box<{integer}>` as `std::marker::Send`
10-
--> $DIR/cast-to-unsized-trait-object-suggestion.rs:16:5
10+
--> $DIR/cast-to-unsized-trait-object-suggestion.rs:13:5
1111
|
12-
16 | Box::new(1) as Send;
12+
13 | Box::new(1) as Send;
1313
| ^^^^^^^^^^^^^^^----
1414
| |
1515
| help: try casting to a `Box` instead: `Box<Send>`

0 commit comments

Comments
 (0)