]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unused/unused-macro-with-follow-violation.rs
Auto merge of #87284 - Aaron1011:remove-paren-special, r=petrochenkov
[rust.git] / src / test / ui / unused / unused-macro-with-follow-violation.rs
1 #![allow(unused_macros)]
2
3 macro_rules! test {
4     ($e:expr +) => () //~ ERROR not allowed for `expr` fragments
5 }
6
7 fn main() { }