about summary refs log tree commit diff
path: root/tests/ui/suggestions/issue-71394-no-from-impl.rs
blob: c295a72c7bddf6e9532ecf23d0bb5d31dc030ee2 (plain)
1
2
3
4
5
6
7
8
9
10
//@ 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
}