2021-10-20 08:56:10 -05:00
error[E0659]: `exported` is ambiguous
2018-12-25 09:56:47 -06:00
--> $DIR/local-modularized-tricky-fail-1.rs:28:1
2018-07-29 06:51:17 -05:00
|
2019-03-09 06:03:44 -06:00
LL | exported!();
2018-09-07 18:51:20 -05:00
| ^^^^^^^^ ambiguous name
2018-07-29 06:51:17 -05:00
|
2021-10-20 08:56:10 -05: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 16:11:59 -06:00
note: `exported` could refer to the macro defined here
2018-12-25 09:56:47 -06:00
--> $DIR/local-modularized-tricky-fail-1.rs:5:5
2018-07-29 06:51:17 -05:00
|
LL | / macro_rules! exported {
LL | | () => ()
LL | | }
| |_____^
...
LL | define_exported!();
2021-10-14 13:28:28 -05:00
| ------------------ in this macro invocation
2018-11-04 16:11:59 -06:00
note: `exported` could also refer to the macro imported here
2018-12-25 09:56:47 -06:00
--> $DIR/local-modularized-tricky-fail-1.rs:22:5
2018-07-29 06:51:17 -05:00
|
LL | use inner1::*;
| ^^^^^^^^^
2018-11-04 16:11:59 -06:00
= help: consider adding an explicit import of `exported` to disambiguate
2021-02-13 13:52:25 -06:00
= note: this error originates in the macro `define_exported` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-07-29 06:51:17 -05:00
2021-10-20 08:56:10 -05:00
error[E0659]: `exported` is ambiguous
2020-01-08 11:02:10 -06:00
--> $DIR/local-modularized-tricky-fail-1.rs:28:1
|
LL | exported!();
| ^^^^^^^^ ambiguous name
|
2021-10-20 08:56:10 -05: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
2020-01-08 11:02:10 -06:00
note: `exported` could refer to the macro defined here
--> $DIR/local-modularized-tricky-fail-1.rs:5:5
|
LL | / macro_rules! exported {
LL | | () => ()
LL | | }
| |_____^
...
LL | define_exported!();
2021-10-14 13:28:28 -05:00
| ------------------ in this macro invocation
2020-01-08 11:02:10 -06:00
note: `exported` could also refer to the macro imported here
--> $DIR/local-modularized-tricky-fail-1.rs:22:5
|
LL | use inner1::*;
| ^^^^^^^^^
= help: consider adding an explicit import of `exported` to disambiguate
2021-02-13 13:52:25 -06:00
= note: this error originates in the macro `define_exported` (in Nightly builds, run with -Z macro-backtrace for more info)
2020-01-08 11:02:10 -06:00
2021-10-20 08:56:10 -05:00
error[E0659]: `panic` is ambiguous
2020-01-08 11:02:10 -06:00
--> $DIR/local-modularized-tricky-fail-1.rs:36:5
2018-07-29 06:51:17 -05:00
|
2019-03-09 06:03:44 -06:00
LL | panic!();
2018-09-07 18:51:20 -05:00
| ^^^^^ ambiguous name
2018-07-29 06:51:17 -05:00
|
2021-10-20 08:56:10 -05: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 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-12-25 09:56:47 -06:00
--> $DIR/local-modularized-tricky-fail-1.rs:11:5
2018-07-29 06:51:17 -05:00
|
LL | / macro_rules! panic {
LL | | () => ()
LL | | }
| |_____^
...
LL | define_panic!();
2021-10-14 13:28:28 -05:00
| --------------- in this macro invocation
2018-11-25 07:08:43 -06:00
= help: use `crate::panic` to refer to this macro unambiguously
2021-02-13 13:52:25 -06:00
= note: this error originates in the macro `define_panic` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-07-29 06:51:17 -05:00
2021-10-20 08:56:10 -05:00
error[E0659]: `include` is ambiguous
2020-01-08 11:02:10 -06:00
--> $DIR/local-modularized-tricky-fail-1.rs:47:1
2019-08-12 13:52:37 -05:00
|
LL | include!();
| ^^^^^^^ ambiguous name
|
2021-10-20 08:56:10 -05: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
2019-08-12 13:52:37 -05:00
= note: `include` could refer to a macro from prelude
note: `include` could also refer to the macro defined here
--> $DIR/local-modularized-tricky-fail-1.rs:17:5
|
LL | / macro_rules! include {
LL | | () => ()
LL | | }
| |_____^
...
LL | define_include!();
2021-10-14 13:28:28 -05:00
| ----------------- in this macro invocation
2019-08-12 13:52:37 -05:00
= help: use `crate::include` to refer to this macro unambiguously
2021-02-13 13:52:25 -06:00
= note: this error originates in the macro `define_include` (in Nightly builds, run with -Z macro-backtrace for more info)
2019-08-12 13:52:37 -05:00
2020-01-08 11:02:10 -06:00
error: aborting due to 4 previous errors
2018-07-29 06:51:17 -05:00
For more information about this error, try `rustc --explain E0659`.