mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
Auto merge of #74246 - GuillaumeGomez:cleanup-e0719, r=Dylan-DPC
Clean up E0719 explanation r? @Dylan-DPC
This commit is contained in:
commit
8cb94fc552
@ -1,4 +1,4 @@
|
||||
The value for an associated type has already been specified.
|
||||
An associated type value was specified more than once.
|
||||
|
||||
Erroneous code example:
|
||||
|
||||
@ -25,7 +25,7 @@ trait FooTrait {}
|
||||
trait BarTrait {}
|
||||
trait FooBarTrait: FooTrait + BarTrait {}
|
||||
|
||||
struct Foo<T: Iterator<Item: FooBarTrait>> { f: T }
|
||||
struct Foo<T: Iterator<Item: FooBarTrait>> { f: T } // ok!
|
||||
```
|
||||
|
||||
For more information about associated types, see [the book][bk-at]. For more
|
||||
|
Loading…
Reference in New Issue
Block a user