]> git.proxmox.com Git - rustc.git/blame - src/test/ui/associated-types/issue-23595-1.stderr
New upstream version 1.64.0+dfsg1
[rustc.git] / src / test / ui / associated-types / issue-23595-1.stderr
CommitLineData
5869c6ff
XL
1error[E0191]: the value of the associated types `ChildKey` (from trait `Hierarchy`), `Children` (from trait `Hierarchy`), `Value` (from trait `Hierarchy`) must be specified
2 --> $DIR/issue-23595-1.rs:8:58
3 |
4LL | type Value;
064997fb 5 | ---------- `Value` defined here
5869c6ff 6LL | type ChildKey;
064997fb 7 | ------------- `ChildKey` defined here
5869c6ff 8LL | type Children = dyn Index<Self::ChildKey, Output=dyn Hierarchy>;
064997fb 9 | ------------- `Children` defined here ^^^^^^^^^ help: specify the associated types: `Hierarchy<Value = Type, ChildKey = Type, Children = Type>`
5869c6ff
XL
10
11error: aborting due to previous error
12
13For more information about this error, try `rustc --explain E0191`.