Files
Android11/external/rust/crates/quote/tests/ui/does-not-have-iter-interpolated.rs
2023-10-13 14:01:41 +00:00

10 lines
201 B
Rust

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