Skip to content

Commit 6389f35

Browse files
committed
Fix rebase
1 parent 3deb757 commit 6389f35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/ui/issue-50480.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ error[E0277]: the trait bound `i32: std::iter::Iterator` is not satisfied
88
--> $DIR/issue-50480.rs:13:24
99
|
1010
LL | struct Foo(NotDefined, <i32 as Iterator>::Item, Vec<i32>, String);
11-
| ^^^^^^^^^^^^^^^^^^^^^^^^ `i32` is not an iterator; maybe try calling `.iter()` or a similar method
11+
| ^^^^^^^^^^^^^^^^^^^^^^^ `i32` is not an iterator; maybe try calling `.iter()` or a similar method
1212
|
1313
= help: the trait `std::iter::Iterator` is not implemented for `i32`
1414

@@ -19,7 +19,7 @@ LL | #[derive(Clone, Copy)]
1919
| ^^^^
2020
LL | //~^ ERROR the trait `Copy` may not be implemented for this type
2121
LL | struct Foo(NotDefined, <i32 as Iterator>::Item, Vec<i32>, String);
22-
| --------- ------- this field does not implement `Copy`
22+
| -------- ------ this field does not implement `Copy`
2323
| |
2424
| this field does not implement `Copy`
2525

0 commit comments

Comments
 (0)