blob: c295a72c7bddf6e9532ecf23d0bb5d31dc030ee2 [file] [log] [blame]
//@ ignore-wasm
//@ ignore-msvc
//@ ignore-emscripten
//@ ignore-uwp
fn main() {
let data: &[u8] = &[0; 10];
let _: &[i8] = data.into();
//~^ ERROR the trait bound `&[i8]: From<&[u8]>` is not satisfied
}