summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/missing-assoc-fn.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/suggestions/missing-assoc-fn.stderr')
-rw-r--r--tests/ui/suggestions/missing-assoc-fn.stderr2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/suggestions/missing-assoc-fn.stderr b/tests/ui/suggestions/missing-assoc-fn.stderr
index 77fa95628..84cb6e985 100644
--- a/tests/ui/suggestions/missing-assoc-fn.stderr
+++ b/tests/ui/suggestions/missing-assoc-fn.stderr
@@ -28,7 +28,7 @@ error[E0046]: not all trait items implemented, missing: `from_iter`
LL | impl FromIterator<()> for X {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing `from_iter` in implementation
|
- = help: implement the missing item: `fn from_iter<T>(_: T) -> Self where T: IntoIterator, std::iter::IntoIterator::Item = () { todo!() }`
+ = help: implement the missing item: `fn from_iter<T: IntoIterator<Item = ()>>(_: T) -> Self { todo!() }`
error: aborting due to 3 previous errors