summaryrefslogtreecommitdiffstats
path: root/src/tools/cargo/crates/rustfix/tests/everything/str-lit-type-mismatch.fixed.rs
blob: d5a81a8a8be6d698a87539f251bd717ff0a7aee5 (plain)
1
2
3
4
5
fn main() {
    let x: &[u8] = b"foo"; //~ ERROR mismatched types
    let y: &[u8; 4] = b"baaa"; //~ ERROR mismatched types
    let z: &str = "foo"; //~ ERROR mismatched types
}