about summary refs log tree commit diff
path: root/src/test/ui/parser/raw-byte-string-literals.rs
blob: 3b50fb8036ada911eab0393b8aeaa06ef8ce4851 (plain)
1
2
3
4
pub fn main() {
    br"é";  //~ ERROR raw byte string must be ASCII
    br##~"a"~##;  //~ ERROR only `#` is allowed in raw string delimitation
}