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