]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rust-2018/uniform-paths/issue-56596.stderr
Merge commit 'bf1c6f9871f430e284b17aa44059e0d0395e28a6' into clippyup
[rust.git] / src / test / ui / rust-2018 / uniform-paths / issue-56596.stderr
1 error[E0659]: `issue_56596` is ambiguous (name vs any other name during import resolution)
2   --> $DIR/issue-56596.rs:12:5
3    |
4 LL | use issue_56596;
5    |     ^^^^^^^^^^^ ambiguous name
6    |
7    = note: `issue_56596` could refer to a crate passed with `--extern`
8    = help: use `::issue_56596` to refer to this crate unambiguously
9 note: `issue_56596` could also refer to the module imported here
10   --> $DIR/issue-56596.rs:11:5
11    |
12 LL | use m::*;
13    |     ^^^^
14    = help: use `crate::issue_56596` to refer to this module unambiguously
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0659`.