mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
19 lines
531 B
Rust
19 lines
531 B
Rust
macro_rules! values {
|
|
($($token:ident($value:literal) $(as $inner:ty)? => $attr:meta,)*) => {
|
|
#[derive(Debug)]
|
|
pub enum TokenKind {
|
|
$(
|
|
#[$attr]
|
|
$token $($inner)? = $value,
|
|
)*
|
|
}
|
|
};
|
|
}
|
|
//~^^^^^ ERROR expected one of `(`, `,`, `=`, `{`, or `}`, found `(String)`
|
|
//~| ERROR macro expansion ignores token `(String)` and any following
|
|
|
|
values!(STRING(1) as (String) => cfg(test),);
|
|
//~^ ERROR expected one of `!` or `::`, found `<eof>`
|
|
|
|
fn main() {}
|