]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0659.stderr
Added docs to internal_macro const
[rust.git] / src / test / ui / error-codes / E0659.stderr
1 error[E0659]: `foo` is ambiguous (glob import vs glob import in the same module)
2   --> $DIR/E0659.rs:15:15
3    |
4 LL |     collider::foo();
5    |               ^^^ ambiguous name
6    |
7 note: `foo` could refer to the function imported here
8   --> $DIR/E0659.rs:10:13
9    |
10 LL |     pub use moon::*;
11    |             ^^^^^^^
12    = help: consider adding an explicit import of `foo` to disambiguate
13 note: `foo` could also refer to the function imported here
14   --> $DIR/E0659.rs:11:13
15    |
16 LL |     pub use earth::*;
17    |             ^^^^^^^^
18    = help: consider adding an explicit import of `foo` to disambiguate
19
20 error: aborting due to previous error
21
22 For more information about this error, try `rustc --explain E0659`.