mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-29 03:27:40 +00:00
11 lines
349 B
Plaintext
11 lines
349 B
Plaintext
// When a char literal is used where a str should be,
|
|
// suggest changing to double quotes.
|
|
|
|
// run-rustfix
|
|
|
|
fn main() {
|
|
let _: &str = "a"; //~ ERROR mismatched types
|
|
let _: &str = "\"\"\""; //~ ERROR character literal may only contain one codepoint
|
|
let _: &str = "\"\"\""; //~ ERROR character literal may only contain one codepoint
|
|
}
|