2021-10-20 13:56:10 +00:00
error[E0659]: `m` is ambiguous
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:101:13
2018-08-30 01:56:55 +00:00
|
2019-03-09 12:03:44 +00:00
LL | m!();
2018-09-07 23:51:20 +00:00
| ^ ambiguous name
2018-11-25 13:08:43 +00:00
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2018-08-30 01:56:55 +00:00
|
2021-10-20 13:56:10 +00:00
= 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
2018-11-04 22:11:59 +00:00
note: `m` could refer to the macro defined here
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:88:9
2018-08-30 01:56:55 +00:00
|
2018-09-07 23:50:57 +00:00
LL | macro_rules! m { () => { Right } }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-08-30 01:56:55 +00:00
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2018-11-04 22:11:59 +00:00
note: `m` could also refer to the macro defined here
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:97:9
2018-08-30 01:56:55 +00:00
|
LL | macro_rules! m { () => {} }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2022-06-21 02:25:52 +00:00
= note: this error originates in the macro `gen_gen_inner_invoc` which comes from the expansion of the macro `include` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-30 01:56:55 +00:00
2021-10-20 13:56:10 +00:00
error[E0659]: `m` is ambiguous
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:139:42
2018-08-30 01:56:55 +00:00
|
2019-03-09 12:03:44 +00:00
LL | macro_rules! gen_invoc { () => { m!() } }
2018-09-07 23:51:20 +00:00
| ^ ambiguous name
2018-11-25 13:08:43 +00:00
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2018-08-30 01:56:55 +00:00
|
2021-10-20 13:56:10 +00:00
= 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
2018-11-04 22:11:59 +00:00
note: `m` could refer to the macro defined here
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:88:9
2018-08-30 01:56:55 +00:00
|
2018-09-07 23:50:57 +00:00
LL | macro_rules! m { () => { Right } }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-08-30 01:56:55 +00:00
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2018-11-04 22:11:59 +00:00
note: `m` could also refer to the macro defined here
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:135:9
2018-08-30 01:56:55 +00:00
|
LL | macro_rules! m { () => {} }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2022-06-21 02:25:52 +00:00
= note: this error originates in the macro `gen_invoc` which comes from the expansion of the macro `include` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-30 01:56:55 +00:00
2021-10-20 13:56:10 +00:00
error[E0659]: `m` is ambiguous
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:148:9
2018-08-30 01:56:55 +00:00
|
2019-03-09 12:03:44 +00:00
LL | m!();
2018-09-07 23:51:20 +00:00
| ^ ambiguous name
2018-11-25 13:08:43 +00:00
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2018-08-30 01:56:55 +00:00
|
2021-10-20 13:56:10 +00:00
= 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
2018-11-04 22:11:59 +00:00
note: `m` could refer to the macro defined here
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:88:9
2018-08-30 01:56:55 +00:00
|
2018-09-07 23:50:57 +00:00
LL | macro_rules! m { () => { Right } }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-08-30 01:56:55 +00:00
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2018-11-04 22:11:59 +00:00
note: `m` could also refer to the macro defined here
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:144:9
2018-08-30 01:56:55 +00:00
|
LL | macro_rules! m { () => {} }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2021-02-13 19:52:25 +00:00
= note: this error originates in the macro `include` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-30 01:56:55 +00:00
2021-10-20 13:56:10 +00:00
error[E0659]: `m` is ambiguous
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:164:9
2018-08-30 01:56:55 +00:00
|
2019-03-09 12:03:44 +00:00
LL | m!();
2018-09-07 23:51:20 +00:00
| ^ ambiguous name
2018-11-25 13:08:43 +00:00
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2018-08-30 01:56:55 +00:00
|
2021-10-20 13:56:10 +00:00
= 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
2018-11-04 22:11:59 +00:00
note: `m` could refer to the macro defined here
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:88:9
2018-08-30 01:56:55 +00:00
|
2018-09-07 23:50:57 +00:00
LL | macro_rules! m { () => { Right } }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-08-30 01:56:55 +00:00
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2018-11-04 22:11:59 +00:00
note: `m` could also refer to the macro defined here
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:85:9
2018-08-30 01:56:55 +00:00
|
2018-09-07 23:50:57 +00:00
LL | macro_rules! m { () => { Wrong } }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-08-30 01:56:55 +00:00
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2021-02-13 19:52:25 +00:00
= note: this error originates in the macro `include` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-30 01:56:55 +00:00
2021-10-20 13:56:10 +00:00
error[E0659]: `m` is ambiguous
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:180:13
2018-08-30 01:56:55 +00:00
|
2019-03-09 12:03:44 +00:00
LL | m!();
2018-09-07 23:51:20 +00:00
| ^ ambiguous name
2018-11-25 13:08:43 +00:00
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2018-08-30 01:56:55 +00:00
|
2021-10-20 13:56:10 +00:00
= 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
2018-11-04 22:11:59 +00:00
note: `m` could refer to the macro defined here
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:88:9
2018-08-30 01:56:55 +00:00
|
2018-09-07 23:50:57 +00:00
LL | macro_rules! m { () => { Right } }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-08-30 01:56:55 +00:00
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2018-11-04 22:11:59 +00:00
note: `m` could also refer to the macro defined here
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:85:9
2018-08-30 01:56:55 +00:00
|
2018-09-07 23:50:57 +00:00
LL | macro_rules! m { () => { Wrong } }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-08-30 01:56:55 +00:00
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2022-06-21 02:25:52 +00:00
= note: this error originates in the macro `gen_gen_inner_invoc` which comes from the expansion of the macro `include` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-30 01:56:55 +00:00
2021-10-20 13:56:10 +00:00
error[E0659]: `m` is ambiguous
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:218:42
2018-08-30 01:56:55 +00:00
|
2019-03-09 12:03:44 +00:00
LL | macro_rules! gen_invoc { () => { m!() } }
2018-09-07 23:51:20 +00:00
| ^ ambiguous name
2018-11-25 13:08:43 +00:00
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2018-08-30 01:56:55 +00:00
|
2021-10-20 13:56:10 +00:00
= 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
2018-11-04 22:11:59 +00:00
note: `m` could refer to the macro defined here
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:88:9
2018-08-30 01:56:55 +00:00
|
2018-09-07 23:50:57 +00:00
LL | macro_rules! m { () => { Right } }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-08-30 01:56:55 +00:00
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2018-11-04 22:11:59 +00:00
note: `m` could also refer to the macro defined here
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:85:9
2018-08-30 01:56:55 +00:00
|
2018-09-07 23:50:57 +00:00
LL | macro_rules! m { () => { Wrong } }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-08-30 01:56:55 +00:00
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2022-06-21 02:25:52 +00:00
= note: this error originates in the macro `gen_invoc` which comes from the expansion of the macro `include` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-30 01:56:55 +00:00
2021-10-20 13:56:10 +00:00
error[E0659]: `m` is ambiguous
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:232:9
2018-08-30 01:56:55 +00:00
|
2019-03-09 12:03:44 +00:00
LL | m!();
2018-09-07 23:51:20 +00:00
| ^ ambiguous name
2018-11-25 13:08:43 +00:00
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2018-08-30 01:56:55 +00:00
|
2021-10-20 13:56:10 +00:00
= 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
2018-11-04 22:11:59 +00:00
note: `m` could refer to the macro defined here
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:88:9
2018-08-30 01:56:55 +00:00
|
2018-09-07 23:50:57 +00:00
LL | macro_rules! m { () => { Right } }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-08-30 01:56:55 +00:00
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2018-11-04 22:11:59 +00:00
note: `m` could also refer to the macro defined here
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:227:13
2018-08-30 01:56:55 +00:00
|
LL | macro_rules! m { () => {} }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2021-02-13 19:52:25 +00:00
= note: this error originates in the macro `include` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-30 01:56:55 +00:00
2021-10-20 13:56:10 +00:00
error[E0659]: `m` is ambiguous
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:262:42
2018-08-30 01:56:55 +00:00
|
2019-03-09 12:03:44 +00:00
LL | macro_rules! gen_invoc { () => { m!() } }
2018-09-07 23:51:20 +00:00
| ^ ambiguous name
2018-11-25 13:08:43 +00:00
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2018-08-30 01:56:55 +00:00
|
2021-10-20 13:56:10 +00:00
= 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
2018-11-04 22:11:59 +00:00
note: `m` could refer to the macro defined here
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:88:9
2018-08-30 01:56:55 +00:00
|
2018-09-07 23:50:57 +00:00
LL | macro_rules! m { () => { Right } }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-08-30 01:56:55 +00:00
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2018-11-04 22:11:59 +00:00
note: `m` could also refer to the macro defined here
2018-09-07 23:50:57 +00:00
--> $DIR/restricted-shadowing-legacy.rs:257:13
2018-08-30 01:56:55 +00:00
|
LL | macro_rules! m { () => {} }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
LL | include!();
2021-10-14 18:28:28 +00:00
| ---------- in this macro invocation
2022-06-21 02:25:52 +00:00
= note: this error originates in the macro `gen_invoc` which comes from the expansion of the macro `include` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-30 01:56:55 +00:00
error: aborting due to 8 previous errors
For more information about this error, try `rustc --explain E0659`.