]> git.lizzy.rs Git - rust.git/blob - tests/ui/include-macros/mismatched-types.rs
Rollup merge of #103236 - tspiteri:redoc-int-adc-sbb, r=m-ou-se
[rust.git] / tests / ui / include-macros / mismatched-types.rs
1 fn main() {
2     let b: &[u8] = include_str!("file.txt");    //~ ERROR mismatched types
3     let s: &str = include_bytes!("file.txt");   //~ ERROR mismatched types
4 }