mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
71 lines
2.7 KiB
Plaintext
71 lines
2.7 KiB
Plaintext
error[E0659]: `exported` is ambiguous
|
|
--> $DIR/local-modularized-tricky-fail-1.rs:28:1
|
|
|
|
|
LL | exported!();
|
|
| ^^^^^^^^ ambiguous name
|
|
|
|
|
= 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
|
|
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!();
|
|
| ------------------ in this macro invocation
|
|
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
|
|
= note: this error originates in the macro `define_exported` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error[E0659]: `panic` is ambiguous
|
|
--> $DIR/local-modularized-tricky-fail-1.rs:35:5
|
|
|
|
|
LL | panic!();
|
|
| ^^^^^ ambiguous name
|
|
|
|
|
= 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
|
|
= note: `panic` could refer to a macro from prelude
|
|
note: `panic` could also refer to the macro defined here
|
|
--> $DIR/local-modularized-tricky-fail-1.rs:11:5
|
|
|
|
|
LL | / macro_rules! panic {
|
|
LL | | () => ()
|
|
LL | | }
|
|
| |_____^
|
|
...
|
|
LL | define_panic!();
|
|
| --------------- in this macro invocation
|
|
= help: use `crate::panic` to refer to this macro unambiguously
|
|
= note: this error originates in the macro `define_panic` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error[E0659]: `include` is ambiguous
|
|
--> $DIR/local-modularized-tricky-fail-1.rs:46:1
|
|
|
|
|
LL | include!();
|
|
| ^^^^^^^ ambiguous name
|
|
|
|
|
= 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
|
|
= 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!();
|
|
| ----------------- in this macro invocation
|
|
= help: use `crate::include` to refer to this macro unambiguously
|
|
= note: this error originates in the macro `define_include` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0659`.
|