mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +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.
14 lines
264 B
Rust
14 lines
264 B
Rust
#![feature(macro_metavar_expr_concat)]
|
|
|
|
macro_rules! join {
|
|
($lhs:ident, $rhs:ident) => {
|
|
${concat($lhs, $rhs)}
|
|
//~^ ERROR cannot find value `abcdef` in this scope
|
|
};
|
|
}
|
|
|
|
fn main() {
|
|
let abcdef = 1;
|
|
let _another = join!(abc, def);
|
|
}
|