2018-02-07 19:35:35 -08:00
|
|
|
error[E0223]: ambiguous associated type
|
2023-01-08 06:54:52 +00:00
|
|
|
--> $DIR/E0223.rs:8:14
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let foo: MyTrait::X;
|
2023-10-16 18:25:11 +00:00
|
|
|
| ^^^^^^^^^^ help: use fully-qualified syntax: `<MyStruct as MyTrait>::X`
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0223`.
|