2021-10-20 13:56:10 +00:00
error[E0659]: `bar` is ambiguous
2018-12-25 15:56:47 +00:00
--> $DIR/macro-paths.rs:13:5
2017-12-10 19:47:55 +00:00
|
2019-03-09 12:03:44 +00:00
LL | bar::m! {
2018-09-07 23:51:20 +00:00
| ^^^ ambiguous name
2017-12-10 19:47:55 +00:00
|
2021-10-20 13:56:10 +00:00
= note: ambiguous because of a conflict between a name from a glob import and a macro-expanded name in the same module during import or macro resolution
2018-11-04 22:11:59 +00:00
note: `bar` could refer to the module defined here
2018-12-25 15:56:47 +00:00
--> $DIR/macro-paths.rs:14:9
2017-12-10 19:47:55 +00:00
|
2018-02-23 00:42:32 +00:00
LL | mod bar { pub use two_macros::m; }
2017-12-10 19:47:55 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-11-04 22:11:59 +00:00
note: `bar` could also refer to the module imported here
2018-12-25 15:56:47 +00:00
--> $DIR/macro-paths.rs:12:9
2017-12-10 19:47:55 +00:00
|
2018-02-23 00:42:32 +00:00
LL | use foo::*;
2017-12-10 19:47:55 +00:00
| ^^^^^^
2018-11-04 22:11:59 +00:00
= help: consider adding an explicit import of `bar` to disambiguate
2017-12-10 19:47:55 +00:00
2021-10-20 13:56:10 +00:00
error[E0659]: `baz` is ambiguous
2018-12-25 15:56:47 +00:00
--> $DIR/macro-paths.rs:23:5
2017-12-10 19:47:55 +00:00
|
2019-03-09 12:03:44 +00:00
LL | baz::m! {
2018-09-07 23:51:20 +00:00
| ^^^ ambiguous name
2017-12-10 19:47:55 +00:00
|
2021-10-20 13:56:10 +00:00
= note: ambiguous because of a conflict between a macro-expanded name and a less macro-expanded name from outer scope during import or macro resolution
2018-11-04 22:11:59 +00:00
note: `baz` could refer to the module defined here
2018-12-25 15:56:47 +00:00
--> $DIR/macro-paths.rs:24:9
2017-12-10 19:47:55 +00:00
|
2018-02-23 00:42:32 +00:00
LL | mod baz { pub use two_macros::m; }
2017-12-10 19:47:55 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-11-04 22:11:59 +00:00
note: `baz` could also refer to the module defined here
2018-12-25 15:56:47 +00:00
--> $DIR/macro-paths.rs:18:1
2017-12-10 19:47:55 +00:00
|
2018-02-23 00:42:32 +00:00
LL | / pub mod baz {
LL | | pub use two_macros::m;
LL | | }
2017-12-10 19:47:55 +00:00
| |_^
2018-11-25 13:08:43 +00:00
= help: use `crate::baz` to refer to this module unambiguously
2017-12-10 19:47:55 +00:00
2018-03-12 20:21:43 +00:00
error: aborting due to 2 previous errors
2017-12-10 19:47:55 +00:00
2018-03-12 20:21:43 +00:00
For more information about this error, try `rustc --explain E0659`.