blob: 534afabdf777e30023b6ebae60771942822d6763 (
plain)
1
2
3
4
5
6
7
|
// ignore-tidy-cr
// compile-flags: -Z continue-parse-after-error
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
}
|