1 2 3 4 5 6 7 8 9
use macro_template::template; fn main() { template! { for C in ('a'..='c').strip_prefix() { let _ = C; } } }