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