mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-05 02:29:36 +00:00
10 lines
209 B
Rust
10 lines
209 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 #nonrep)*);
|
||
|
}
|