2019-09-22 15:38:02 +00:00
|
|
|
error[E0426]: use of undeclared label `'label_use`
|
2020-01-31 22:02:31 +00:00
|
|
|
--> $DIR/mixed-site-span.rs:13:9
|
2019-09-22 15:38:02 +00:00
|
|
|
|
|
|
|
|
LL | proc_macro_rules!();
|
2021-10-14 18:28:28 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^ undeclared label `'label_use`
|
2019-12-16 13:56:47 +00:00
|
|
|
|
|
2021-02-13 19:52:25 +00:00
|
|
|
= note: this error originates in the macro `proc_macro_rules` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2019-09-22 15:38:02 +00:00
|
|
|
|
|
|
|
error[E0425]: cannot find value `local_use` in this scope
|
2020-01-31 22:02:31 +00:00
|
|
|
--> $DIR/mixed-site-span.rs:13:9
|
2019-09-22 15:38:02 +00:00
|
|
|
|
|
|
|
|
LL | proc_macro_rules!();
|
2021-10-14 18:28:28 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^ not found in this scope
|
2019-12-16 13:56:47 +00:00
|
|
|
|
|
2021-02-13 19:52:25 +00:00
|
|
|
= note: this error originates in the macro `proc_macro_rules` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2019-09-22 15:38:02 +00:00
|
|
|
|
|
|
|
error[E0425]: cannot find value `local_def` in this scope
|
2020-01-31 22:02:31 +00:00
|
|
|
--> $DIR/mixed-site-span.rs:17:9
|
2019-09-22 15:38:02 +00:00
|
|
|
|
|
|
|
|
LL | local_def;
|
|
|
|
| ^^^^^^^^^ not found in this scope
|
|
|
|
|
|
|
|
error[E0412]: cannot find type `ItemUse` in crate `$crate`
|
2020-01-31 22:02:31 +00:00
|
|
|
--> $DIR/mixed-site-span.rs:24:1
|
2020-02-10 16:37:12 +00:00
|
|
|
|
|
|
|
|
LL | pass_dollar_crate!();
|
2021-10-14 18:28:28 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ not found in `$crate`
|
2019-10-24 05:20:58 +00:00
|
|
|
|
|
2021-02-13 19:52:25 +00:00
|
|
|
= note: this error originates in the macro `proc_macro_rules` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2019-09-22 15:38:02 +00:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
|
|
|
Some errors have detailed explanations: E0412, E0425, E0426.
|
|
|
|
For more information about an error, try `rustc --explain E0412`.
|