mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-05 19:21:51 +00:00
18 lines
323 B
Rust
18 lines
323 B
Rust
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() {}
|