2017-12-10 13:47:55 -06:00
|
|
|
error[E0223]: ambiguous associated type
|
|
|
|
--> $DIR/self-impl.rs:33:16
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _: <Self>::Baz = true;
|
2018-10-10 22:49:45 -05:00
|
|
|
| ^^^^^^^^^^^ help: use fully-qualified syntax: `<Bar as Trait>::Baz`
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
error[E0223]: ambiguous associated type
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/self-impl.rs:35:16
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _: Self::Baz = true;
|
2018-10-10 22:49:45 -05:00
|
|
|
| ^^^^^^^^^ help: use fully-qualified syntax: `<Bar as Trait>::Baz`
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0223`.
|