1 2 3 4 5 6 7 8 9 10 11 12 13
#![deny(warnings)] macro_rules! m { ($i:ident) => { paste::item! { pub fn [<foo $i>]() {} } }; } m!(Bar); fn main() {}