rust/tests/ui/macros/issue-102878.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
126 B
Rust
Raw Normal View History

2022-10-11 01:43:36 +08:00
macro_rules!test{($l:expr,$_:r)=>({const:y y)}
//~^ ERROR mismatched closing delimiter: `)`
fn s(){test!(1,i)}
fn main() {}