]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/unused/unused-macro-with-follow-violation.rs
Rollup merge of #103236 - tspiteri:redoc-int-adc-sbb, r=m-ou-se
[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() { }