summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/macro_not_expr.rs
blob: 45f85ff2c93e330ebccfea02b04a95f23b847082 (plain)
1
2
3
4
5
6
7
macro_rules! test {
    ($($t:tt)*) => {};
}

fn main() {
    test!( a : B => c d );
}