2018-11-05 01:11:59 +03:00
|
|
|
error[E0659]: `bar` is ambiguous (macro-expanded name vs less macro-expanded name from outer scope during import/macro resolution)
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/out-of-order-shadowing.rs:5:1
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2018-08-28 01:41:07 +03:00
|
|
|
LL | bar!(); //~ ERROR `bar` is ambiguous
|
2018-09-08 02:51:20 +03:00
|
|
|
| ^^^ ambiguous name
|
2018-08-28 01:41:07 +03:00
|
|
|
|
|
2018-11-05 01:11:59 +03:00
|
|
|
note: `bar` could refer to the macro defined here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/out-of-order-shadowing.rs:4:1
|
2018-08-28 01:41:07 +03:00
|
|
|
|
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | define_macro!(bar);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2018-11-05 01:11:59 +03:00
|
|
|
note: `bar` could also refer to the macro defined here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/out-of-order-shadowing.rs:3:1
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2018-08-28 01:41:07 +03:00
|
|
|
LL | macro_rules! bar { () => {} }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-08-28 01:41:07 +03:00
|
|
|
For more information about this error, try `rustc --explain E0659`.
|