summaryrefslogtreecommitdiffstats
path: root/vendor/cstr/tests/compile_fail/non-str.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/cstr/tests/compile_fail/non-str.rs')
-rw-r--r--vendor/cstr/tests/compile_fail/non-str.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/vendor/cstr/tests/compile_fail/non-str.rs b/vendor/cstr/tests/compile_fail/non-str.rs
new file mode 100644
index 000000000..172b14559
--- /dev/null
+++ b/vendor/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);
+}