summaryrefslogtreecommitdiffstats
path: root/third_party/rust/cstr/tests/compile_fail/trash-after.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/cstr/tests/compile_fail/trash-after.rs')
-rw-r--r--third_party/rust/cstr/tests/compile_fail/trash-after.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/third_party/rust/cstr/tests/compile_fail/trash-after.rs b/third_party/rust/cstr/tests/compile_fail/trash-after.rs
new file mode 100644
index 0000000000..5e4f7c3f08
--- /dev/null
+++ b/third_party/rust/cstr/tests/compile_fail/trash-after.rs
@@ -0,0 +1,5 @@
+use cstr::cstr;
+
+fn main() {
+ let _foo = cstr!("foo" + "bar");
+}