-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[RFC-3086] Add a new concat metavar expr
- Loading branch information
Showing
7 changed files
with
232 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#![feature(macro_metavar_expr)] | ||
|
||
macro_rules! join { | ||
($lhs:ident, $rhs:ident) => { | ||
${concat($lhs, $rhs)} | ||
//~^ cannot find value `abcdef` in this scope | ||
}; | ||
} | ||
|
||
fn main() { | ||
let abcdef = 1; | ||
let _another = join!(abc, def); | ||
} |
14 changes: 14 additions & 0 deletions
14
tests/ui/macros/rfc-3086-metavar-expr/concat-hygiene.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
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`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// run-pass | ||
|
||
#![allow(dead_code, non_camel_case_types, non_upper_case_globals)] | ||
#![feature(macro_metavar_expr)] | ||
|
||
macro_rules! create_things { | ||
($lhs:ident) => { | ||
struct ${concat($lhs, _separated_idents_in_a_struct)} { | ||
foo: i32, | ||
${concat($lhs, _separated_idents_in_a_field)}: i32, | ||
} | ||
|
||
mod ${concat($lhs, _separated_idents_in_a_module)} { | ||
pub const FOO: () = (); | ||
} | ||
|
||
fn ${concat($lhs, _separated_idents_in_a_fn)}() {} | ||
}; | ||
} | ||
|
||
macro_rules! without_dollar_sign_is_an_ident { | ||
($ident:ident) => { | ||
const ${concat(VAR, ident)}: i32 = 1; | ||
const ${concat(VAR, $ident)}: i32 = 2; | ||
}; | ||
} | ||
|
||
fn main() { | ||
create_things!(behold); | ||
behold_separated_idents_in_a_fn(); | ||
let _ = behold_separated_idents_in_a_module::FOO; | ||
let _ = behold_separated_idents_in_a_struct { | ||
foo: 1, | ||
behold_separated_idents_in_a_field: 2, | ||
}; | ||
|
||
without_dollar_sign_is_an_ident!(_123); | ||
assert_eq!(VARident, 1); | ||
assert_eq!(VAR_123, 2); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters