We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f06e8e1 + 2ba68f1 commit 8cb94fcCopy full SHA for 8cb94fc
src/librustc_error_codes/error_codes/E0719.md
@@ -1,4 +1,4 @@
1
-The value for an associated type has already been specified.
+An associated type value was specified more than once.
2
3
Erroneous code example:
4
@@ -25,7 +25,7 @@ trait FooTrait {}
25
trait BarTrait {}
26
trait FooBarTrait: FooTrait + BarTrait {}
27
28
-struct Foo<T: Iterator<Item: FooBarTrait>> { f: T }
+struct Foo<T: Iterator<Item: FooBarTrait>> { f: T } // ok!
29
```
30
31
For more information about associated types, see [the book][bk-at]. For more
0 commit comments