]> git.lizzy.rs Git - rust.git/blob - src/test/ui/anon-params/auxiliary/anon-params-edition-hygiene.rs
Rollup merge of #70038 - DutchGhost:const-forget-tests, r=RalfJung
[rust.git] / src / test / ui / anon-params / auxiliary / anon-params-edition-hygiene.rs
1 // edition:2015
2
3 #[macro_export]
4 macro_rules! generate_trait_2015 {
5     ($Type: ident) => {
6         trait Trait {
7             fn method($Type) {}
8         }
9     };
10 }
11
12 fn main() {}