2014-05-23 17:20:46 -05:00
|
|
|
static c3: char =
|
|
|
|
'\x1' //~ ERROR: numeric character escape is too short
|
|
|
|
;
|
|
|
|
|
2019-01-06 09:33:05 -06:00
|
|
|
static s3: &'static str =
|
2014-05-23 17:20:46 -05:00
|
|
|
"\x1" //~ ERROR: numeric character escape is too short
|
|
|
|
;
|
|
|
|
|
2014-06-16 16:12:44 -05:00
|
|
|
static c: char =
|
|
|
|
'\●' //~ ERROR: unknown character escape
|
|
|
|
;
|
|
|
|
|
|
|
|
static s: &'static str =
|
|
|
|
"\●" //~ ERROR: unknown character escape
|
|
|
|
;
|
|
|
|
|
2019-01-06 09:33:05 -06:00
|
|
|
fn main() {}
|