rust/tests/ui/anon-params/auxiliary/anon-params-edition-hygiene.rs
2023-01-11 09:32:08 +00:00

13 lines
179 B
Rust

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