1use quote::quote;
2
3fn main() {
4    let nonrep = "";
5
6    // Without some protection against repetitions with no iterator somewhere
7    // inside, this would loop infinitely.
8    quote!(#(#nonrep #nonrep)*);
9}
10