]> git.lizzy.rs Git - rust.git/blob - src/test/ui/generic-associated-types/issue-81712-cyclic-traits.stderr
Rollup merge of #85018 - hi-rustin:rustin-patch-84637, r=estebank
[rust.git] / src / test / ui / generic-associated-types / issue-81712-cyclic-traits.stderr
1 error[E0107]: missing generics for associated type `C::DType`
2   --> $DIR/issue-81712-cyclic-traits.rs:17:19
3    |
4 LL |     type CType: C<DType = Self>;
5    |                   ^^^^^ expected 1 generic argument
6    |
7 note: associated type defined here, with 1 generic parameter: `T`
8   --> $DIR/issue-81712-cyclic-traits.rs:14:10
9    |
10 LL |     type DType<T>: D<T, CType = Self>;
11    |          ^^^^^ -
12 help: add missing generic argument
13    |
14 LL |     type CType: C<DType<T> = Self>;
15    |                   ^^^^^^^^
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0107`.