summaryrefslogtreecommitdiffstats
path: root/src/test/ui/inference/str-as-char.fixed
blob: 6aea809cbdb29ff0b8e127017d53339470af16ec (plain)
1
2
3
4
5
6
7
8
9
10
// 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
}