Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
suggestions
/
issue-71394-no-from-impl.rs
blob: c295a72c7bddf6e9532ecf23d0bb5d31dc030ee2 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
}