blob: 2800e4090cf7938d8569b66cce7c633372a306dd (
plain)
1
2
3
4
5
6
7
|
// compile-flags: -Z continue-parse-after-error
pub fn main() {
br"é"; //~ ERROR raw byte string must be ASCII
br##~"a"~##; //~ ERROR only `#` is allowed in raw string delimitation
}
|