2017-12-10 22:47:55 +03:00
|
|
|
error[E0223]: ambiguous associated type
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/self-impl.rs:23:16
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _: <Self>::Baz = true;
|
2025-04-23 21:14:25 +02:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
|
help: use fully-qualified syntax
|
|
|
|
|
|
|
|
|
|
|
LL - let _: <Self>::Baz = true;
|
|
|
|
|
LL + let _: <Bar as Foo>::Baz = true;
|
|
|
|
|
|
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
|
|
|
error[E0223]: ambiguous associated type
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/self-impl.rs:25:16
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _: Self::Baz = true;
|
2025-04-23 21:14:25 +02:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
|
help: use fully-qualified syntax
|
|
|
|
|
|
|
|
|
|
|
LL - let _: Self::Baz = true;
|
|
|
|
|
LL + let _: <Bar as Foo>::Baz = true;
|
|
|
|
|
|
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0223`.
|