summaryrefslogtreecommitdiffstats
path: root/src/test/ui/str/str-lit-type-mismatch.rs
blob: 12637c7b994bd727cd73d2c8403bc28d1415b21f (plain)
1
2
3
4
5
fn main() {
    let x: &[u8] = "foo"; //~ ERROR mismatched types
    let y: &[u8; 4] = "baaa"; //~ ERROR mismatched types
    let z: &str = b"foo"; //~ ERROR mismatched types
}