summaryrefslogtreecommitdiffstats
path: root/src/test/ui/anon-params/auxiliary/anon-params-edition-hygiene.rs
blob: aa4221becc24f245f127037bcf789c29db4ea441 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// edition:2015

#[macro_export]
macro_rules! generate_trait_2015 {
    ($Type: ident) => {
        trait Trait {
            fn method($Type) {}
        }
    };
}

fn main() {}