aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/bytecharstring.rs
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/rust/compile/bytecharstring.rs')
-rw-r--r--gcc/testsuite/rust/compile/bytecharstring.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/testsuite/rust/compile/bytecharstring.rs b/gcc/testsuite/rust/compile/bytecharstring.rs
new file mode 100644
index 0000000..9242e2c
--- /dev/null
+++ b/gcc/testsuite/rust/compile/bytecharstring.rs
@@ -0,0 +1,8 @@
+fn main ()
+{
+ let _bc = b'\x80';
+ let _bs = b"foo\x80bar";
+
+ let _c = '\xef'; // { dg-error "out of range" }
+ let _s = "Foo\xEFBar"; // { dg-error "out of range" }
+}