2018-08-17 18:38:51 -05:00
|
|
|
error[E0432]: unresolved import `nonexistent_module`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-53269.rs:6:9
|
2018-08-17 18:38:51 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | use nonexistent_module::mac;
|
2018-11-13 17:52:26 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ maybe a missing `extern crate nonexistent_module;`?
|
2018-08-17 18:38:51 -05:00
|
|
|
|
2018-11-04 16:11:59 -06:00
|
|
|
error[E0659]: `mac` is ambiguous (`macro_rules` vs non-`macro_rules` from other module)
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-53269.rs:8:5
|
2018-08-17 18:38:51 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | mac!();
|
2018-09-07 18:51:20 -05:00
|
|
|
| ^^^ ambiguous name
|
2018-08-17 18:38:51 -05:00
|
|
|
|
|
2018-11-04 16:11:59 -06:00
|
|
|
note: `mac` could refer to the macro defined here
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-53269.rs:3:1
|
2018-08-17 18:38:51 -05:00
|
|
|
|
|
|
|
|
LL | macro_rules! mac { () => () }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-11-04 16:11:59 -06:00
|
|
|
note: `mac` could also refer to the unresolved item imported here
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-53269.rs:6:9
|
2018-08-17 18:38:51 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | use nonexistent_module::mac;
|
2018-08-17 18:38:51 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
2018-11-11 10:46:04 -06:00
|
|
|
= help: use `self::mac` to refer to this unresolved item unambiguously
|
2018-08-17 18:38:51 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-08-20 16:34:30 -05:00
|
|
|
Some errors occurred: E0432, E0659.
|
|
|
|
For more information about an error, try `rustc --explain E0432`.
|