mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-26 00:36:51 +00:00
These tests have expanded beyond the RFC, so rename the directory `rfc-3086-metavar-expr` to `metavar-expressions`. `concat` (which wasn't part of the RFC) now fits in this group, so merge its tests into the `metavar-expressions` directory. Additionally rename some related `issue-*` tests.
15 lines
529 B
Plaintext
15 lines
529 B
Plaintext
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
|
|
|
|
|
= 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`.
|