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