2019-09-22 10:38:02 -05:00
|
|
|
error[E0426]: use of undeclared label `'label_use`
|
|
|
|
--> $DIR/mixed-site-span.rs:15:9
|
|
|
|
|
|
|
|
|
LL | proc_macro_rules!();
|
2019-12-15 09:47:51 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ undeclared label `'label_use`
|
2019-12-16 07:56:47 -06:00
|
|
|
|
|
|
|
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
2019-09-22 10:38:02 -05:00
|
|
|
|
|
|
|
error[E0425]: cannot find value `local_use` in this scope
|
|
|
|
--> $DIR/mixed-site-span.rs:15:9
|
|
|
|
|
|
|
|
|
LL | proc_macro_rules!();
|
2019-12-15 09:47:51 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ not found in this scope
|
2019-12-16 07:56:47 -06:00
|
|
|
|
|
|
|
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
2019-09-22 10:38:02 -05:00
|
|
|
|
|
|
|
error[E0425]: cannot find value `local_def` in this scope
|
|
|
|
--> $DIR/mixed-site-span.rs:19:9
|
|
|
|
|
|
|
|
|
LL | local_def;
|
|
|
|
| ^^^^^^^^^ not found in this scope
|
|
|
|
|
|
|
|
error[E0412]: cannot find type `ItemUse` in crate `$crate`
|
2020-02-10 10:37:12 -06:00
|
|
|
--> $DIR/mixed-site-span.rs:26:1
|
|
|
|
|
|
|
|
|
LL | pass_dollar_crate!();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ not found in `$crate`
|
2019-10-24 00:20:58 -05:00
|
|
|
|
|
2019-12-16 07:56:47 -06:00
|
|
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
2019-09-22 10:38:02 -05:00
|
|
|
help: possible candidate is found in another module, you can import it into scope
|
|
|
|
|
|
|
|
|
LL | use ItemUse;
|
|
|
|
|
|
|
|
|
|
|
|
|
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`.
|