blob: 54d75ed682d0d13c6c5c76f6c7fe67b979de9a56 [file] [log] [blame]
// compile-flags: -Z continue-parse-after-error
static c3: char =
'\x1' //~ ERROR: numeric character escape is too short
;
static s3: &'static str =
"\x1" //~ ERROR: numeric character escape is too short
;
static c: char =
'\●' //~ ERROR: unknown character escape
;
static s: &'static str =
"\●" //~ ERROR: unknown character escape
;
fn main() {}