about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/test')
-rw-r--r--src/test/ui/issue-50480.stderr4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/issue-50480.stderr b/src/test/ui/issue-50480.stderr
index 3714a0b72b7..f5281fec4d1 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, <i32 as Iterator>::Item, Vec<i32>, 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, <i32 as Iterator>::Item, Vec<i32>, String);
-   |                                                 --------- ------- this field does not implement `Copy`
+   |                                                 --------  ------ this field does not implement `Copy`
    |                                                 |
    |                                                 this field does not implement `Copy`