]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/parser/raw-byte-string-literals.rs
Auto merge of #61492 - RalfJung:const-qualif-comments, r=eddyb
[rust.git] / src / test / ui / parser / raw-byte-string-literals.rs
index 2800e4090cf7938d8569b66cce7c633372a306dd..534afabdf777e30023b6ebae60771942822d6763 100644 (file)
@@ -1,7 +1,7 @@
+// ignore-tidy-cr
 // compile-flags: -Z continue-parse-after-error
-
-
 pub fn main() {
+    br"a\r"; //~ ERROR bare CR not allowed in raw string
     br"é";  //~ ERROR raw byte string must be ASCII
     br##~"a"~##;  //~ ERROR only `#` is allowed in raw string delimitation
 }