rust/tests/ui/macros/out-of-order-shadowing.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
824 B
Plaintext
Raw Normal View History

error[E0659]: `bar` is ambiguous
2018-12-25 15:56:47 +00:00
--> $DIR/out-of-order-shadowing.rs:5:1
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | bar!();
| ^^^ 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: `bar` could refer to the macro defined here
2018-12-25 15:56:47 +00:00
--> $DIR/out-of-order-shadowing.rs:4:1
|
2018-08-08 12:28:26 +00:00
LL | define_macro!(bar);
2021-10-14 18:28:28 +00:00
| ^^^^^^^^^^^^^^^^^^
note: `bar` could also refer to the macro defined here
2018-12-25 15:56:47 +00:00
--> $DIR/out-of-order-shadowing.rs:3:1
2018-08-08 12:28:26 +00:00
|
LL | macro_rules! bar { () => {} }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
= note: this error originates in the macro `define_macro` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 12:28:26 +00:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0659`.