summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/obsolete_in_place.rs
blob: 3f364c1aecdc7abebc948df0db02603e2a057095 (plain)
1
2
3
4
5
6
7
8
9
// #2953

macro_rules! demo {
    ($a:ident <- $b:expr) => {};
}

fn main() {
    demo!(i <- 0);
}