]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/issue-105069.stderr
Rollup merge of #106692 - eggyal:mv-binary_heap.rs-binary_heap/mod.rs, r=Mark-Simulacrum
[rust.git] / tests / ui / resolve / issue-105069.stderr
1 error[E0659]: `V` is ambiguous
2   --> $DIR/issue-105069.rs:2:5
3    |
4 LL | use V;
5    |     ^ ambiguous name
6    |
7    = note: ambiguous because of multiple potential import sources
8 note: `V` could refer to the variant imported here
9   --> $DIR/issue-105069.rs:1:5
10    |
11 LL | use self::A::*;
12    |     ^^^^^^^^^^
13 note: `V` could also refer to the variant imported here
14   --> $DIR/issue-105069.rs:3:5
15    |
16 LL | use self::B::*;
17    |     ^^^^^^^^^^
18
19 error: aborting due to previous error
20
21 For more information about this error, try `rustc --explain E0659`.