summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/raw/raw-byte-string-literals.rs
blob: 163c8ac66b022ae8eb4aac851d8adc71027e05bb (plain)
1
2
3
4
5
6
7
// ignore-tidy-cr

pub fn main() {
    br"a
"; //~ 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
}