summaryrefslogtreecommitdiffstats
path: root/tests/ui/self/self-impl.stderr
blob: 36372b644d6e171a18f033f6a74b0bc2d96fa247 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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`.