aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/macros/mbe/macro-issue3693.rs
blob: e990c8bc355b324900bedb19ede6446353e06896 (plain)
1
2
3
4
5
6
7
8
9
10
macro_rules! generate_pattern_iterators {
    {
        $(#[$forward_iterator_attribute:meta])*
    } => {
    }
}

generate_pattern_iterators! {
    /// Created with the method [`split`].
}