]> git.proxmox.com Git - rustc.git/blob - src/test/ui/proc-macro/weird-hygiene.stderr
New upstream version 1.49.0+dfsg1
[rustc.git] / src / test / 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 a macro (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 a macro (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`.