mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +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
|
|
}
|