summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/issue-23595-1.stderr
blob: 4307477a56afe49df9aeceeb4998de16cb8ec56a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error[E0191]: the value of the associated types `ChildKey` (from trait `Hierarchy`), `Children` (from trait `Hierarchy`), `Value` (from trait `Hierarchy`) must be specified
  --> $DIR/issue-23595-1.rs:8:58
   |
LL |     type Value;
   |     ---------- `Value` defined here
LL |     type ChildKey;
   |     ------------- `ChildKey` defined here
LL |     type Children = dyn Index<Self::ChildKey, Output=dyn Hierarchy>;
   |     ------------- `Children` defined here                ^^^^^^^^^ help: specify the associated types: `Hierarchy<Value = Type, ChildKey = Type, Children = Type>`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0191`.