2018-11-21 16:13:09 -06:00
|
|
|
error[E0433]: failed to resolve: could not find `non_last_segment` in `issue_56125`
|
2018-11-24 20:45:43 -06:00
|
|
|
--> $DIR/issue-56125.rs:14:22
|
2018-11-21 16:13:09 -06:00
|
|
|
|
|
2018-11-24 20:45:43 -06:00
|
|
|
LL | use issue_56125::non_last_segment::non_last_segment::*;
|
|
|
|
| ^^^^^^^^^^^^^^^^ could not find `non_last_segment` in `issue_56125`
|
2018-11-21 16:13:09 -06:00
|
|
|
|
|
|
|
error[E0432]: unresolved import `issue_56125::last_segment`
|
2018-11-24 20:45:43 -06:00
|
|
|
--> $DIR/issue-56125.rs:8:22
|
2018-11-21 16:13:09 -06:00
|
|
|
|
|
2018-11-24 20:45:43 -06:00
|
|
|
LL | use issue_56125::last_segment::*;
|
|
|
|
| ^^^^^^^^^^^^ could not find `last_segment` in `issue_56125`
|
|
|
|
|
|
|
|
error[E0432]: unresolved import `empty::issue_56125`
|
|
|
|
--> $DIR/issue-56125.rs:21:9
|
|
|
|
|
|
|
|
|
LL | use empty::issue_56125; //~ ERROR unresolved import `empty::issue_56125`
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ no `issue_56125` in `m3::empty`
|
2018-11-21 16:13:09 -06:00
|
|
|
|
|
|
|
error[E0659]: `issue_56125` is ambiguous (name vs any other name during import resolution)
|
2018-11-24 20:45:43 -06:00
|
|
|
--> $DIR/issue-56125.rs:8:9
|
2018-11-21 16:13:09 -06:00
|
|
|
|
|
2018-11-24 20:45:43 -06:00
|
|
|
LL | use issue_56125::last_segment::*;
|
|
|
|
| ^^^^^^^^^^^ ambiguous name
|
2018-11-21 16:13:09 -06:00
|
|
|
|
|
|
|
|
= note: `issue_56125` could refer to an extern crate passed with `--extern`
|
|
|
|
= help: use `::issue_56125` to refer to this extern crate unambiguously
|
|
|
|
note: `issue_56125` could also refer to the module imported here
|
2018-11-24 20:45:43 -06:00
|
|
|
--> $DIR/issue-56125.rs:8:9
|
2018-11-21 16:13:09 -06:00
|
|
|
|
|
2018-11-24 20:45:43 -06:00
|
|
|
LL | use issue_56125::last_segment::*;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-11-21 16:13:09 -06:00
|
|
|
= help: use `self::issue_56125` to refer to this module unambiguously
|
|
|
|
|
|
|
|
error[E0659]: `issue_56125` is ambiguous (name vs any other name during import resolution)
|
2018-11-24 20:45:43 -06:00
|
|
|
--> $DIR/issue-56125.rs:14:9
|
2018-11-21 16:13:09 -06:00
|
|
|
|
|
2018-11-24 20:45:43 -06:00
|
|
|
LL | use issue_56125::non_last_segment::non_last_segment::*;
|
|
|
|
| ^^^^^^^^^^^ ambiguous name
|
2018-11-21 16:13:09 -06:00
|
|
|
|
|
|
|
|
= note: `issue_56125` could refer to an extern crate passed with `--extern`
|
|
|
|
= help: use `::issue_56125` to refer to this extern crate unambiguously
|
|
|
|
note: `issue_56125` could also refer to the module imported here
|
2018-11-24 20:45:43 -06:00
|
|
|
--> $DIR/issue-56125.rs:14:9
|
2018-11-21 16:13:09 -06:00
|
|
|
|
|
2018-11-24 20:45:43 -06:00
|
|
|
LL | use issue_56125::non_last_segment::non_last_segment::*;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-11-21 16:13:09 -06:00
|
|
|
= help: use `self::issue_56125` to refer to this module unambiguously
|
|
|
|
|
2018-11-24 20:45:43 -06:00
|
|
|
error[E0659]: `issue_56125` is ambiguous (name vs any other name during import resolution)
|
|
|
|
--> $DIR/issue-56125.rs:22:9
|
|
|
|
|
|
|
|
|
LL | use issue_56125::*; //~ ERROR `issue_56125` is ambiguous
|
|
|
|
| ^^^^^^^^^^^ ambiguous name
|
|
|
|
|
|
|
|
|
= note: `issue_56125` could refer to an extern crate passed with `--extern`
|
|
|
|
= help: use `::issue_56125` to refer to this extern crate unambiguously
|
|
|
|
note: `issue_56125` could also refer to the unresolved item imported here
|
|
|
|
--> $DIR/issue-56125.rs:21:9
|
|
|
|
|
|
|
|
|
LL | use empty::issue_56125; //~ ERROR unresolved import `empty::issue_56125`
|
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
= help: use `self::issue_56125` to refer to this unresolved item unambiguously
|
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
2018-11-21 16:13:09 -06:00
|
|
|
|
|
|
|
Some errors occurred: E0432, E0433, E0659.
|
|
|
|
For more information about an error, try `rustc --explain E0432`.
|