]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/weird-hygiene.stderr
Rollup merge of #106591 - Ezrashaw:attempted-integer-identifer, r=Estebank
[rust.git] / tests / ui / proc-macro / weird-hygiene.stderr
1 error[E0425]: cannot find value `hidden_ident` in this scope
2   --> $DIR/weird-hygiene.rs:23:43
3    |
4 LL |             Value = (stringify!($tokens + hidden_ident), 1).1
5    |                                           ^^^^^^^^^^^^ not found in this scope
6 ...
7 LL |     other!(50);
8    |     ---------- in this macro invocation
9    |
10    = note: this error originates in the macro `inner` which comes from the expansion of the macro `other` (in Nightly builds, run with -Z macro-backtrace for more info)
11
12 error[E0425]: cannot find value `hidden_ident` in this scope
13   --> $DIR/weird-hygiene.rs:34:13
14    |
15 LL |             hidden_ident
16    |             ^^^^^^^^^^^^ not found in this scope
17 ...
18 LL |     invoke_it!(25);
19    |     -------------- in this macro invocation
20    |
21    = note: this error originates in the macro `invoke_it` (in Nightly builds, run with -Z macro-backtrace for more info)
22
23 error: aborting due to 2 previous errors
24
25 For more information about this error, try `rustc --explain E0425`.