about summary refs log tree commit diff
path: root/tests/ui/typeck/issue-107087.stderr
blob: 157ba5a1672195c0471912cbccb5d0a2ac15f8d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0223]: ambiguous associated type
  --> $DIR/issue-107087.rs:16:5
   |
LL |     A::B::<>::C
   |     ^^^^^^^^
   |
help: use fully-qualified syntax
   |
LL -     A::B::<>::C
LL +     <A<_> as Foo>::B::<>::C
   |

error: aborting due to 1 previous error

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