Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
11eb3fcdd9db5bbc63aae4ddb0a44018f41b4cf2
/
.
/
crates
/
quote
/
tests
/
ui
/
does-not-have-iter-interpolated-dup.rs
blob: 0a39f4150704fb168d33408460d00a0a7c8418a1 [
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
#
nonrep
)*);
}