2017-12-10 22:47:55 +03:00
|
|
|
error[E0223]: ambiguous associated type
|
|
|
|
--> $DIR/self-impl.rs:33:16
|
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _: <Self>::Baz = true;
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^^^^^^^^ ambiguous associated type
|
|
|
|
|
|
|
|
|
= note: specify the type using the syntax `<Bar as Trait>::Baz`
|
|
|
|
|
|
|
|
error[E0223]: ambiguous associated type
|
2017-12-10 23:29:24 +03:00
|
|
|
--> $DIR/self-impl.rs:35:16
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _: Self::Baz = true;
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^^^^^^ ambiguous associated type
|
|
|
|
|
|
|
|
|
= note: specify the type using the syntax `<Bar as Trait>::Baz`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-02-19 21:40:25 +01:00
|
|
|
If you want more information on this error, try using "rustc --explain E0223"
|