mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
16 lines
510 B
Plaintext
16 lines
510 B
Plaintext
error[E0223]: ambiguous associated type
|
|
--> $DIR/self-impl.rs:23:16
|
|
|
|
|
LL | let _: <Self>::Baz = true;
|
|
| ^^^^^^^^^^^ help: use fully-qualified syntax: `<Bar as Foo>::Baz`
|
|
|
|
error[E0223]: ambiguous associated type
|
|
--> $DIR/self-impl.rs:25:16
|
|
|
|
|
LL | let _: Self::Baz = true;
|
|
| ^^^^^^^^^ help: use fully-qualified syntax: `<Bar as Foo>::Baz`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0223`.
|