mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 16:54:01 +00:00
11 lines
318 B
Rust
11 lines
318 B
Rust
macro_rules!test{($l:expr,$_:r)=>({const:y y)}
|
|
//~^ ERROR mismatched closing delimiter: `)`
|
|
//~| ERROR invalid fragment specifier `r`
|
|
//~| ERROR expected identifier, found keyword `const`
|
|
//~| ERROR expected identifier, found keyword `const`
|
|
//~| ERROR expected identifier, found `:`
|
|
|
|
fn s(){test!(1,i)}
|
|
|
|
fn main() {}
|