2018-11-04 22:11:59 +00:00
|
|
|
error[E0659]: `exported` is ambiguous (glob import vs macro-expanded name in the same module during import/macro resolution)
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/local-modularized-tricky-fail-1.rs:28:1
|
2018-07-29 11:51:17 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | exported!();
|
2018-09-07 23:51:20 +00:00
|
|
|
| ^^^^^^^^ ambiguous name
|
2018-07-29 11:51:17 +00:00
|
|
|
|
|
2018-11-04 22:11:59 +00:00
|
|
|
note: `exported` could refer to the macro defined here
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/local-modularized-tricky-fail-1.rs:5:5
|
2018-07-29 11:51:17 +00:00
|
|
|
|
|
|
|
|
LL | / macro_rules! exported {
|
|
|
|
LL | | () => ()
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
...
|
|
|
|
LL | define_exported!();
|
|
|
|
| ------------------- in this macro invocation
|
2018-11-04 22:11:59 +00:00
|
|
|
note: `exported` could also refer to the macro imported here
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/local-modularized-tricky-fail-1.rs:22:5
|
2018-07-29 11:51:17 +00:00
|
|
|
|
|
|
|
|
LL | use inner1::*;
|
|
|
|
| ^^^^^^^^^
|
2018-11-04 22:11:59 +00:00
|
|
|
= help: consider adding an explicit import of `exported` to disambiguate
|
2018-07-29 11:51:17 +00:00
|
|
|
|
2018-11-04 22:11:59 +00:00
|
|
|
error[E0659]: `include` is ambiguous (macro-expanded name vs less macro-expanded name from outer scope during import/macro resolution)
|
2019-06-07 15:29:48 +00:00
|
|
|
--> $DIR/local-modularized-tricky-fail-1.rs:46:1
|
2018-07-29 11:51:17 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | include!();
|
2018-09-07 23:51:20 +00:00
|
|
|
| ^^^^^^^ ambiguous name
|
2018-07-29 11:51:17 +00:00
|
|
|
|
|
2019-06-20 08:52:31 +00:00
|
|
|
= note: `include` could refer to a macro from prelude
|
2018-11-04 22:11:59 +00:00
|
|
|
note: `include` could also refer to the macro defined here
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/local-modularized-tricky-fail-1.rs:17:5
|
2018-07-29 11:51:17 +00:00
|
|
|
|
|
|
|
|
LL | / macro_rules! include {
|
|
|
|
LL | | () => ()
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
...
|
|
|
|
LL | define_include!();
|
|
|
|
| ------------------ in this macro invocation
|
2018-11-25 13:08:43 +00:00
|
|
|
= help: use `crate::include` to refer to this macro unambiguously
|
2018-07-29 11:51:17 +00:00
|
|
|
|
2018-11-04 22:11:59 +00:00
|
|
|
error[E0659]: `panic` is ambiguous (macro-expanded name vs less macro-expanded name from outer scope during import/macro resolution)
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/local-modularized-tricky-fail-1.rs:35:5
|
2018-07-29 11:51:17 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | panic!();
|
2018-09-07 23:51:20 +00:00
|
|
|
| ^^^^^ ambiguous name
|
2018-07-29 11:51:17 +00:00
|
|
|
|
|
2018-11-04 22:11:59 +00:00
|
|
|
= note: `panic` could refer to a macro from prelude
|
|
|
|
note: `panic` could also refer to the macro defined here
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/local-modularized-tricky-fail-1.rs:11:5
|
2018-07-29 11:51:17 +00:00
|
|
|
|
|
|
|
|
LL | / macro_rules! panic {
|
|
|
|
LL | | () => ()
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
...
|
|
|
|
LL | define_panic!();
|
|
|
|
| ---------------- in this macro invocation
|
2018-11-25 13:08:43 +00:00
|
|
|
= help: use `crate::panic` to refer to this macro unambiguously
|
2018-07-29 11:51:17 +00:00
|
|
|
|
2019-06-07 15:29:48 +00:00
|
|
|
error: aborting due to 3 previous errors
|
2018-07-29 11:51:17 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0659`.
|