]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/unused/unused-macro-with-follow-violation.rs
Auto merge of #106989 - clubby789:is-zero-num, r=scottmcm
[rust.git] / tests / ui / lint / 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() { }