summaryrefslogtreecommitdiffstats
path: root/src/test/ui/self/self-impl.stderr
blob: fb47f27e022f59d1313f89b985505622a7f97506 (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 fully-qualified syntax: `<Bar as Trait>::Baz`

error[E0223]: ambiguous associated type
  --> $DIR/self-impl.rs:25:16
   |
LL |         let _: Self::Baz = true;
   |                ^^^^^^^^^ help: use fully-qualified syntax: `<Bar as Trait>::Baz`

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0223`.