summaryrefslogtreecommitdiffstats
path: root/vendor/cstr/tests/pass/str_lit.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/cstr/tests/pass/str_lit.rs')
-rw-r--r--vendor/cstr/tests/pass/str_lit.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/vendor/cstr/tests/pass/str_lit.rs b/vendor/cstr/tests/pass/str_lit.rs
new file mode 100644
index 000000000..d925859a9
--- /dev/null
+++ b/vendor/cstr/tests/pass/str_lit.rs
@@ -0,0 +1,8 @@
+use cstr::cstr;
+use std::ffi::CStr;
+
+fn main() {
+ let foo: &'static CStr = cstr!("foo\u{4e00}bar");
+ let expected = b"foo\xe4\xb8\x80bar\0";
+ assert_eq!(foo, CStr::from_bytes_with_nul(expected).unwrap());
+}