blob: 2c740cc0830fd8abd94efc62669e882a66750b89 [file] [log] [blame]
use quote::quote;
fn main() {
let nonrep = "";
// Without some protection against repetitions with no iterator somewhere
// inside, this would loop infinitely.
quote!(#(#nonrep)*);
}