]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-42755.rs
Rollup merge of #106752 - sulami:master, r=estebank
[rust.git] / tests / ui / issues / issue-42755.rs
1 macro_rules! foo {
2     ($($p:vis)*) => {} //~ ERROR repetition matches empty token tree
3 }
4
5 foo!(a);
6
7 fn main() {}