summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type-alias-enum-variants/enum-variant-priority-lint-ambiguous_associated_items.stderr
blob: aaa3159e0b04745c75d92c2228a176973ec99dea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
error: ambiguous associated item
  --> $DIR/enum-variant-priority-lint-ambiguous_associated_items.rs:32:15
   |
LL |     fn f() -> Self::V { 0 }
   |               ^^^^^^^ help: use fully-qualified syntax: `<E as Tr>::V`
   |
   = note: `#[deny(ambiguous_associated_items)]` on by default
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #57644 <https://github.com/rust-lang/rust/issues/57644>
note: `V` could refer to the variant defined here
  --> $DIR/enum-variant-priority-lint-ambiguous_associated_items.rs:22:5
   |
LL |     V
   |     ^
note: `V` could also refer to the associated type defined here
  --> $DIR/enum-variant-priority-lint-ambiguous_associated_items.rs:26:5
   |
LL |     type V;
   |     ^^^^^^

error: ambiguous associated item
  --> $DIR/enum-variant-priority-lint-ambiguous_associated_items.rs:32:15
   |
LL |     fn f() -> Self::V { 0 }
   |               ^^^^^^^ help: use fully-qualified syntax: `<E as Tr>::V`
   |
   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
   = note: for more information, see issue #57644 <https://github.com/rust-lang/rust/issues/57644>
note: `V` could refer to the variant defined here
  --> $DIR/enum-variant-priority-lint-ambiguous_associated_items.rs:22:5
   |
LL |     V
   |     ^
note: `V` could also refer to the associated type defined here
  --> $DIR/enum-variant-priority-lint-ambiguous_associated_items.rs:26:5
   |
LL |     type V;
   |     ^^^^^^

error: aborting due to 2 previous errors