diff --git a/src/test/ui/issue-50480.stderr b/src/test/ui/issue-50480.stderr index 3714a0b72b7b..f5281fec4d1e 100644 --- a/src/test/ui/issue-50480.stderr +++ b/src/test/ui/issue-50480.stderr @@ -8,7 +8,7 @@ error[E0277]: the trait bound `i32: std::iter::Iterator` is not satisfied --> $DIR/issue-50480.rs:13:24 | LL | struct Foo(NotDefined, ::Item, Vec, String); - | ^^^^^^^^^^^^^^^^^^^^^^^^ `i32` is not an iterator; maybe try calling `.iter()` or a similar method + | ^^^^^^^^^^^^^^^^^^^^^^^ `i32` is not an iterator; maybe try calling `.iter()` or a similar method | = help: the trait `std::iter::Iterator` is not implemented for `i32` @@ -19,7 +19,7 @@ LL | #[derive(Clone, Copy)] | ^^^^ LL | //~^ ERROR the trait `Copy` may not be implemented for this type LL | struct Foo(NotDefined, ::Item, Vec, String); - | --------- ------- this field does not implement `Copy` + | -------- ------ this field does not implement `Copy` | | | this field does not implement `Copy`