]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rust-2018/uniform-paths/issue-56596.stderr
Auto merge of #90281 - xldenis:public-borrow-set, r=nikomatsakis
[rust.git] / src / test / ui / rust-2018 / uniform-paths / issue-56596.stderr
1 error[E0659]: `issue_56596` is ambiguous
2   --> $DIR/issue-56596.rs:12:5
3    |
4 LL | use issue_56596;
5    |     ^^^^^^^^^^^ ambiguous name
6    |
7    = note: ambiguous because of multiple potential import sources
8    = note: `issue_56596` could refer to a crate passed with `--extern`
9    = help: use `::issue_56596` to refer to this crate unambiguously
10 note: `issue_56596` could also refer to the module imported here
11   --> $DIR/issue-56596.rs:11:5
12    |
13 LL | use m::*;
14    |     ^^^^
15    = help: use `crate::issue_56596` to refer to this module unambiguously
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0659`.