mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-06 00:37:55 +00:00
8 lines
201 B
Rust
8 lines
201 B
Rust
static c: char = '\x10\x10';
|
|
//~^ ERROR: character literal may only contain one codepoint
|
|
|
|
fn main() {
|
|
let ch: &str = '\x10\x10';
|
|
//~^ ERROR: character literal may only contain one codepoint
|
|
}
|