summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/issue-102878.rs
blob: bdd9c2569545a8d517a74ac48f289f31dd563ade (plain)
1
2
3
4
5
6
macro_rules!test{($l:expr,$_:r)=>({const:y y)}
//~^ ERROR mismatched closing delimiter: `)`

fn s(){test!(1,i)}

fn main() {}