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