]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/mixed-site-span.stderr
Rollup merge of #107470 - kadiwa4:bootstrap_cleanup, r=albertlarsan68
[rust.git] / tests / ui / proc-macro / mixed-site-span.stderr
1 error[E0426]: use of undeclared label `'label_use`
2   --> $DIR/mixed-site-span.rs:13:9
3    |
4 LL |         proc_macro_rules!();
5    |         ^^^^^^^^^^^^^^^^^^^ undeclared label `'label_use`
6    |
7    = note: this error originates in the macro `proc_macro_rules` (in Nightly builds, run with -Z macro-backtrace for more info)
8
9 error[E0425]: cannot find value `local_use` in this scope
10   --> $DIR/mixed-site-span.rs:13:9
11    |
12 LL |         proc_macro_rules!();
13    |         ^^^^^^^^^^^^^^^^^^^ help: a local variable with a similar name exists: `local_def`
14    |
15    = note: this error originates in the macro `proc_macro_rules` (in Nightly builds, run with -Z macro-backtrace for more info)
16
17 error[E0425]: cannot find value `local_def` in this scope
18   --> $DIR/mixed-site-span.rs:17:9
19    |
20 LL |         local_def;
21    |         ^^^^^^^^^ help: a local variable with a similar name exists: `local_use`
22
23 error[E0412]: cannot find type `ItemUse` in crate `$crate`
24   --> $DIR/mixed-site-span.rs:24:1
25    |
26 LL | pass_dollar_crate!();
27    | ^^^^^^^^^^^^^^^^^^^^ not found in `$crate`
28    |
29    = note: this error originates in the macro `proc_macro_rules` which comes from the expansion of the macro `pass_dollar_crate` (in Nightly builds, run with -Z macro-backtrace for more info)
30
31 error: aborting due to 4 previous errors
32
33 Some errors have detailed explanations: E0412, E0425, E0426.
34 For more information about an error, try `rustc --explain E0412`.