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