rust/src/test/ui/imports/macros.stderr

40 lines
1.2 KiB
Plaintext
Raw Normal View History

error[E0659]: `m` 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/macros.rs:26:5
|
2018-02-22 18:42:32 -06:00
LL | m! { //~ ERROR ambiguous
| ^ ambiguous name
|
note: `m` could refer to the macro imported here
2018-05-13 19:22:52 -05:00
--> $DIR/macros.rs:27:13
|
2018-02-22 18:42:32 -06:00
LL | use foo::m;
| ^^^^^^
note: `m` could also refer to the macro imported here
2018-05-13 19:22:52 -05:00
--> $DIR/macros.rs:25:9
|
2018-02-22 18:42:32 -06:00
LL | use two_macros::*;
| ^^^^^^^^^^^^^
= help: consider adding an explicit import of `m` to disambiguate
error[E0659]: `m` 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/macros.rs:39:9
|
2018-02-22 18:42:32 -06:00
LL | m! { //~ ERROR ambiguous
| ^ ambiguous name
|
note: `m` could refer to the macro imported here
2018-05-13 19:22:52 -05:00
--> $DIR/macros.rs:40:17
|
2018-02-22 18:42:32 -06:00
LL | use two_macros::n as m;
| ^^^^^^^^^^^^^^^^^^
note: `m` could also refer to the macro imported here
2018-05-13 19:22:52 -05:00
--> $DIR/macros.rs:32:9
|
2018-02-22 18:42:32 -06:00
LL | use two_macros::m;
| ^^^^^^^^^^^^^
= help: use `self::m` to refer to the macro unambiguously
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0659`.