diff options
Diffstat (limited to 'third_party/rust/quote/tests/ui/not-repeatable.rs')
-rw-r--r-- | third_party/rust/quote/tests/ui/not-repeatable.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/third_party/rust/quote/tests/ui/not-repeatable.rs b/third_party/rust/quote/tests/ui/not-repeatable.rs new file mode 100644 index 0000000000..ff18060ce8 --- /dev/null +++ b/third_party/rust/quote/tests/ui/not-repeatable.rs @@ -0,0 +1,7 @@ +use quote::quote; +use std::net::Ipv4Addr; + +fn main() { + let ip = Ipv4Addr::LOCALHOST; + let _ = quote! { #(#ip)* }; +} |