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