]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/unused/unused-macro-with-follow-violation.rs
Rollup merge of #106570 - Xaeroxe:div-duration-tests, r=JohnTitor
[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() { }