2018-11-05 01:11:59 +03:00
|
|
|
error[E0659]: `m` is ambiguous (glob import vs macro-expanded name in the same module during import/macro resolution)
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/macros.rs:16:5
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | m! {
|
2018-09-08 02:51:20 +03:00
|
|
|
| ^ ambiguous name
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-11-05 01:11:59 +03:00
|
|
|
note: `m` could refer to the macro imported here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/macros.rs:17:13
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | use foo::m;
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^^^
|
2018-11-05 01:11:59 +03:00
|
|
|
note: `m` could also refer to the macro imported here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/macros.rs:15:9
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | use two_macros::*;
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^^^^^^^^^^
|
2018-11-05 01:11:59 +03:00
|
|
|
= help: consider adding an explicit import of `m` to disambiguate
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2018-11-05 01:11:59 +03:00
|
|
|
error[E0659]: `m` is ambiguous (macro-expanded name vs less macro-expanded name from outer scope during import/macro resolution)
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/macros.rs:29:9
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | m! {
|
2018-09-08 02:51:20 +03:00
|
|
|
| ^ ambiguous name
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-11-05 01:11:59 +03:00
|
|
|
note: `m` could refer to the macro imported here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/macros.rs:30:17
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | use two_macros::n as m;
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
2018-11-05 01:11:59 +03:00
|
|
|
note: `m` could also refer to the macro imported here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/macros.rs:22:9
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | use two_macros::m;
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^^^^^^^^^^
|
2018-11-11 19:46:04 +03:00
|
|
|
= help: use `self::m` to refer to this macro unambiguously
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2018-09-27 04:49:40 +03:00
|
|
|
error: aborting due to 2 previous errors
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2018-03-12 13:21:43 -07:00
|
|
|
For more information about this error, try `rustc --explain E0659`.
|