2017-12-10 19:47:55 +00:00
|
|
|
error[E0109]: type parameters are not allowed on this type
|
|
|
|
--> $DIR/qualified-path-params-2.rs:28:26
|
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | type A = <S as Tr>::A::f<u8>;
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^^ type parameter not allowed
|
|
|
|
|
|
|
|
error[E0223]: ambiguous associated type
|
|
|
|
--> $DIR/qualified-path-params-2.rs:28:10
|
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | type A = <S as Tr>::A::f<u8>;
|
2018-10-11 03:49:45 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: use fully-qualified syntax: `<<S as Tr>::A as Trait>::f`
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
Some errors occurred: E0109, E0223.
|
|
|
|
For more information about an error, try `rustc --explain E0109`.
|