]> git.proxmox.com Git - rustc.git/blob - src/test/ui/parser/raw-byte-string-literals.rs
New upstream version 1.43.0+dfsg1
[rustc.git] / src / test / ui / parser / raw-byte-string-literals.rs
1 // ignore-tidy-cr
2
3 pub fn main() {
4 br"a "; //~ ERROR bare CR not allowed in raw string
5 br"é"; //~ ERROR raw byte string must be ASCII
6 br##~"a"~##; //~ ERROR only `#` is allowed in raw string delimitation
7 }