blob: 01bbe139c7d69ab5785ee2e635469b774815635c [file] [log] [blame]
error[E0659]: `issue_56596` is ambiguous (name vs any other name during import resolution)
--> $DIR/issue-56596.rs:10:5
|
LL | use issue_56596; //~ ERROR `issue_56596` is ambiguous
| ^^^^^^^^^^^ ambiguous name
|
= note: `issue_56596` could refer to an extern crate passed with `--extern`
= help: use `::issue_56596` to refer to this extern crate unambiguously
note: `issue_56596` could also refer to the module imported here
--> $DIR/issue-56596.rs:9:5
|
LL | use m::*;
| ^^^^
= help: use `crate::issue_56596` to refer to this module unambiguously
error: aborting due to previous error
For more information about this error, try `rustc --explain E0659`.