rust/tests/ui/issues/issue-42755.rs

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

8 lines
114 B
Rust
Raw Normal View History

2017-07-06 00:18:58 +00:00
macro_rules! foo {
($($p:vis)*) => {} //~ ERROR repetition matches empty token tree
}
foo!(a);
fn main() {}