diff options
Diffstat (limited to 'tests/ui/self/self-impl.stderr')
-rw-r--r-- | tests/ui/self/self-impl.stderr | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/self/self-impl.stderr b/tests/ui/self/self-impl.stderr new file mode 100644 index 000000000..36372b644 --- /dev/null +++ b/tests/ui/self/self-impl.stderr @@ -0,0 +1,15 @@ +error[E0223]: ambiguous associated type + --> $DIR/self-impl.rs:23:16 + | +LL | let _: <Self>::Baz = true; + | ^^^^^^^^^^^ help: use the fully-qualified path: `<Bar as Foo>::Baz` + +error[E0223]: ambiguous associated type + --> $DIR/self-impl.rs:25:16 + | +LL | let _: Self::Baz = true; + | ^^^^^^^^^ help: use the fully-qualified path: `<Bar as Foo>::Baz` + +error: aborting due to 2 previous errors + +For more information about this error, try `rustc --explain E0223`. |