Sign in
android
/
toolchain
/
rustc
/
cd1aefd586783f162dd848e314bd6991a5ffe033
/
.
/
tests
/
ui
/
suggestions
/
issue-71394-no-from-impl.rs
blob: 63f12a912824e8189b8bbabc40b0d559bc6aa90c [
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
}