about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEsteban Küber <esteban@kuber.com.ar>2022-12-10 15:03:47 -0800
committerEsteban Küber <esteban@kuber.com.ar>2022-12-10 15:03:47 -0800
commit17547af3fb3ee04d922a0fb7a71e74547d18695e (patch)
tree30e18084476ee885c031b42b03c80a273b198c52
parent3ad7131aa1d76f46af8994831b2f950c09d206cd (diff)
downloadrust-17547af3fb3ee04d922a0fb7a71e74547d18695e.tar.gz
rust-17547af3fb3ee04d922a0fb7a71e74547d18695e.zip
fix rebase
-rw-r--r--src/test/ui/on-unimplemented/sum.stderr4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/on-unimplemented/sum.stderr b/src/test/ui/on-unimplemented/sum.stderr
index 0c99e63f0e5..c3103671178 100644
--- a/src/test/ui/on-unimplemented/sum.stderr
+++ b/src/test/ui/on-unimplemented/sum.stderr
@@ -14,7 +14,7 @@ note: required by a bound in `std::iter::Iterator::sum`
   --> $SRC_DIR/core/src/iter/traits/iterator.rs:LL:COL
    |
 LL |         S: Sum<Self::Item>,
-   |            ^^^^^^^^^^^^^^^ required by this bound in `std::iter::Iterator::sum`
+   |            ^^^^^^^^^^^^^^^ required by this bound in `Iterator::sum`
 
 error[E0277]: a value of type `i32` cannot be made by multiplying all elements of type `&()` from an iterator
   --> $DIR/sum.rs:7:5
@@ -32,7 +32,7 @@ note: required by a bound in `std::iter::Iterator::product`
   --> $SRC_DIR/core/src/iter/traits/iterator.rs:LL:COL
    |
 LL |         P: Product<Self::Item>,
-   |            ^^^^^^^^^^^^^^^^^^^ required by this bound in `std::iter::Iterator::product`
+   |            ^^^^^^^^^^^^^^^^^^^ required by this bound in `Iterator::product`
 
 error: aborting due to 2 previous errors