Closed
Description
For example:
INFO] [stderr] error[E0659]: `time` is ambiguous (glob import vs glob import in the same module)
[INFO] [stderr] --> src/main.rs:257:13
[INFO] [stderr] |
[INFO] [stderr] 257 | let mut time = Local::now();
[INFO] [stderr] | ^^^^ ambiguous name
[INFO] [stderr] |
[INFO] [stderr] note: `time` could refer to the function imported here
[INFO] [stderr] --> src/main.rs:4:5
[INFO] [stderr] |
[INFO] [stderr] 4 | use libc::*;
[INFO] [stderr] | ^^^^^^^
[INFO] [stderr] = help: consider adding an explicit import of `time` to disambiguate
[INFO] [stderr] note: `time` could also refer to the function imported here
[INFO] [stderr] --> src/main.rs:11:5
[INFO] [stderr] |
[INFO] [stderr] 11 | use xcb_bindings::*;
[INFO] [stderr] | ^^^^^^^^^^^^^^^
[INFO] [stderr] = help: consider adding an explicit import of `time` to disambiguate
[INFO] [stderr]