2019-05-13 20:21:44 +02:00
|
|
|
// ignore-tidy-cr
|
|
|
|
// compile-flags: -Z continue-parse-after-error
|
2014-06-13 18:56:24 +01:00
|
|
|
pub fn main() {
|
2019-05-13 20:21:44 +02:00
|
|
|
br"a
"; //~ ERROR bare CR not allowed in string
|
2016-11-01 12:57:23 -04:00
|
|
|
br"é"; //~ ERROR raw byte string must be ASCII
|
|
|
|
br##~"a"~##; //~ ERROR only `#` is allowed in raw string delimitation
|
2014-06-13 18:56:24 +01:00
|
|
|
}
|