rust/src/test/ui/self-impl.stderr
Guillaume Gomez 2e104a77cf update tests
2018-03-14 00:53:24 +01:00

20 lines
598 B
Plaintext

error[E0223]: ambiguous associated type
--> $DIR/self-impl.rs:33:16
|
LL | let _: <Self>::Baz = true;
| ^^^^^^^^^^^ ambiguous associated type
|
= note: specify the type using the syntax `<Bar as Trait>::Baz`
error[E0223]: ambiguous associated type
--> $DIR/self-impl.rs:35:16
|
LL | let _: Self::Baz = true;
| ^^^^^^^^^ ambiguous associated type
|
= note: specify the type using the syntax `<Bar as Trait>::Baz`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0223`.