2017-12-10 22:47:55 +03:00
|
|
|
error: `macro_two` is already in scope
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/macro-shadowing.rs:12:5
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | #[macro_use]
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | m1!();
|
2021-10-14 13:28:28 -05:00
|
|
|
| ----- in this macro invocation
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
|
|
|
= note: macro-expanded `#[macro_use]`s may not shadow existing macros (see RFC 1560)
|
2021-02-13 14:52:25 -05:00
|
|
|
= note: this error originates in the macro `m1` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2018-11-05 01:11:59 +03:00
|
|
|
error[E0659]: `foo` 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/macro-shadowing.rs:17:1
|
2018-08-28 01:41:07 +03:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | foo!();
|
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: `foo` could refer to the macro defined here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/macro-shadowing.rs:10:5
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-08-28 01:41:07 +03:00
|
|
|
LL | macro_rules! foo { () => {} }
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | m1!();
|
2021-10-14 13:28:28 -05:00
|
|
|
| ----- in this macro invocation
|
2018-11-05 01:11:59 +03:00
|
|
|
note: `foo` could also refer to the macro defined here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/macro-shadowing.rs:5:1
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-08-28 01:41:07 +03:00
|
|
|
LL | macro_rules! foo { () => {} }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2021-02-13 14:52:25 -05:00
|
|
|
= note: this error originates in the macro `m1` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2018-08-29 03:23:28 +03:00
|
|
|
error: aborting due to 2 previous errors
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2018-08-28 01:41:07 +03:00
|
|
|
For more information about this error, try `rustc --explain E0659`.
|