blob: 9520f5182f4a7a2a821222ac4dce4cda75830e22 [file] [log] [blame] [edit]
error[E0425]: cannot find value `abcdef` in this scope
--> $DIR/concat-hygiene.rs:5:10
|
LL | ${concat($lhs, $rhs)}
| ^^^^^^^^^^^^^^^^^^^^ not found in this scope
...
LL | let _another = join!(abc, def);
| --------------- in this macro invocation
|
help: an identifier with the same name exists, but is not accessible due to macro hygiene
--> $DIR/concat-hygiene.rs:11:9
|
LL | let abcdef = 1;
| ^^^^^^
= note: this error originates in the macro `join` (in Nightly builds, run with -Z macro-backtrace for more info)
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0425`.