2018-11-04 16:11:59 -06:00
|
|
|
error[E0659]: `exported` is ambiguous (glob import vs macro-expanded name in the same module during import/macro resolution)
|
2018-07-29 06:51:17 -05:00
|
|
|
--> $DIR/local-modularized-tricky-fail-1.rs:38:1
|
|
|
|
|
|
|
|
|
LL | exported!(); //~ ERROR `exported` is ambiguous
|
2018-09-07 18:51:20 -05:00
|
|
|
| ^^^^^^^^ ambiguous name
|
2018-07-29 06:51:17 -05:00
|
|
|
|
|
2018-11-04 16:11:59 -06:00
|
|
|
note: `exported` could refer to the macro defined here
|
2018-07-29 06:51:17 -05:00
|
|
|
--> $DIR/local-modularized-tricky-fail-1.rs:15:5
|
|
|
|
|
|
|
|
|
LL | / macro_rules! exported {
|
|
|
|
LL | | () => ()
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
...
|
|
|
|
LL | define_exported!();
|
|
|
|
| ------------------- in this macro invocation
|
2018-11-04 16:11:59 -06:00
|
|
|
note: `exported` could also refer to the macro imported here
|
2018-07-29 06:51:17 -05:00
|
|
|
--> $DIR/local-modularized-tricky-fail-1.rs:32:5
|
|
|
|
|
|
|
|
|
LL | use inner1::*;
|
|
|
|
| ^^^^^^^^^
|
2018-11-04 16:11:59 -06:00
|
|
|
= help: consider adding an explicit import of `exported` to disambiguate
|
2018-07-29 06:51:17 -05:00
|
|
|
|
2018-11-04 16:11:59 -06:00
|
|
|
error[E0659]: `include` is ambiguous (macro-expanded name vs less macro-expanded name from outer scope during import/macro resolution)
|
2018-11-25 07:08:43 -06:00
|
|
|
--> $DIR/local-modularized-tricky-fail-1.rs:57:1
|
2018-07-29 06:51:17 -05:00
|
|
|
|
|
|
|
|
LL | include!(); //~ ERROR `include` is ambiguous
|
2018-09-07 18:51:20 -05:00
|
|
|
| ^^^^^^^ ambiguous name
|
2018-07-29 06:51:17 -05:00
|
|
|
|
|
2018-11-04 16:11:59 -06:00
|
|
|
= note: `include` could refer to a built-in macro
|
|
|
|
note: `include` could also refer to the macro defined here
|
2018-07-29 06:51:17 -05:00
|
|
|
--> $DIR/local-modularized-tricky-fail-1.rs:27:5
|
|
|
|
|
|
|
|
|
LL | / macro_rules! include {
|
|
|
|
LL | | () => ()
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
...
|
|
|
|
LL | define_include!();
|
|
|
|
| ------------------ in this macro invocation
|
2018-11-25 07:08:43 -06:00
|
|
|
= help: use `crate::include` to refer to this macro unambiguously
|
2018-07-29 06:51:17 -05:00
|
|
|
|
2018-11-04 16:11:59 -06:00
|
|
|
error[E0659]: `panic` is ambiguous (macro-expanded name vs less macro-expanded name from outer scope during import/macro resolution)
|
2018-07-29 06:51:17 -05:00
|
|
|
--> $DIR/local-modularized-tricky-fail-1.rs:45:5
|
|
|
|
|
|
|
|
|
LL | panic!(); //~ ERROR `panic` is ambiguous
|
2018-09-07 18:51:20 -05:00
|
|
|
| ^^^^^ ambiguous name
|
2018-07-29 06:51:17 -05:00
|
|
|
|
|
2018-11-04 16:11:59 -06:00
|
|
|
= note: `panic` could refer to a macro from prelude
|
|
|
|
note: `panic` could also refer to the macro defined here
|
2018-07-29 06:51:17 -05:00
|
|
|
--> $DIR/local-modularized-tricky-fail-1.rs:21:5
|
|
|
|
|
|
|
|
|
LL | / macro_rules! panic {
|
|
|
|
LL | | () => ()
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
...
|
|
|
|
LL | define_panic!();
|
|
|
|
| ---------------- in this macro invocation
|
2018-11-25 07:08:43 -06:00
|
|
|
= help: use `crate::panic` to refer to this macro unambiguously
|
2018-07-29 06:51:17 -05:00
|
|
|
|
2018-11-04 16:11:59 -06:00
|
|
|
error[E0659]: `panic` is ambiguous (macro-expanded name vs less macro-expanded name from outer scope during import/macro resolution)
|
2018-11-25 07:08:43 -06:00
|
|
|
--> $DIR/local-modularized-tricky-fail-1.rs:45:5
|
2018-07-29 06:51:17 -05:00
|
|
|
|
|
2018-11-25 07:08:43 -06:00
|
|
|
LL | panic!(); //~ ERROR `panic` is ambiguous
|
|
|
|
| ^^^^^^^^^ ambiguous name
|
2018-07-29 06:51:17 -05:00
|
|
|
|
|
2018-11-04 16:11:59 -06:00
|
|
|
= note: `panic` could refer to a macro from prelude
|
|
|
|
note: `panic` could also refer to the macro defined here
|
2018-07-29 06:51:17 -05:00
|
|
|
--> $DIR/local-modularized-tricky-fail-1.rs:21:5
|
|
|
|
|
|
|
|
|
LL | / macro_rules! panic {
|
|
|
|
LL | | () => ()
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
...
|
|
|
|
LL | define_panic!();
|
|
|
|
| ---------------- in this macro invocation
|
2018-11-25 07:08:43 -06:00
|
|
|
= help: use `crate::panic` to refer to this macro unambiguously
|
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
2018-07-29 06:51:17 -05:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0659`.
|