summaryrefslogtreecommitdiffstats
path: root/src/test/ui/include-macros/mismatched-types.rs
blob: 83fa378a3ae0502e06705e3b7e8f02b4b937570a (plain)
1
2
3
4
fn main() {
    let b: &[u8] = include_str!("file.txt");    //~ ERROR mismatched types
    let s: &str = include_bytes!("file.txt");   //~ ERROR mismatched types
}