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-10 12:43:36 -05:00
macro_rules!test{($l:expr,$_:r)=>({const:y y)}
//~^ ERROR mismatched closing delimiter: `)`
fn s(){test!(1,i)}
fn main() {}