2023-09-24 07:09:38 -05:00
|
|
|
error[E0229]: associated type bindings are not allowed here
|
|
|
|
--> $DIR/issue-102467.rs:7:17
|
|
|
|
|
|
|
|
|
LL | type A: S<C<X = 0i32> = 34>;
|
|
|
|
| ^^^^^^^^ associated type not allowed here
|
2024-04-16 00:41:50 -05:00
|
|
|
|
|
|
|
|
help: consider removing this type binding
|
|
|
|
|
|
|
|
|
LL | type A: S<C<X = 0i32> = 34>;
|
|
|
|
| ~~~~~~~~~~
|
2023-09-24 07:09:38 -05:00
|
|
|
|
2024-03-20 11:52:54 -05:00
|
|
|
error[E0229]: associated type bindings are not allowed here
|
|
|
|
--> $DIR/issue-102467.rs:7:17
|
|
|
|
|
|
|
|
|
LL | type A: S<C<X = 0i32> = 34>;
|
|
|
|
| ^^^^^^^^ associated type not allowed here
|
|
|
|
|
|
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
2024-04-16 00:41:50 -05:00
|
|
|
help: consider removing this type binding
|
|
|
|
|
|
|
|
|
LL | type A: S<C<X = 0i32> = 34>;
|
|
|
|
| ~~~~~~~~~~
|
2024-03-20 11:52:54 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2023-09-24 07:09:38 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0229`.
|