summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/issue-109153.stderr
blob: da95029f6e783571c030608db70a2b91c8fc5015 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
error[E0659]: `bar` is ambiguous
  --> $DIR/issue-109153.rs:11:5
   |
LL | use bar::bar;
   |     ^^^ ambiguous name
   |
   = note: ambiguous because of multiple glob imports of a name in the same module
note: `bar` could refer to the module imported here
  --> $DIR/issue-109153.rs:1:5
   |
LL | use foo::*;
   |     ^^^^^^
   = help: consider adding an explicit import of `bar` to disambiguate
note: `bar` could also refer to the module imported here
  --> $DIR/issue-109153.rs:12:5
   |
LL | use bar::*;
   |     ^^^^^^
   = help: consider adding an explicit import of `bar` to disambiguate

error: aborting due to 1 previous error

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