Sign in
fuchsia
/
third_party
/
rust
/
b6c87c555f3b664f558d137d5f7696a07488157e
/
.
/
src
/
test
/
ui
/
suggestions
/
issue-71394-no-from-impl.rs
blob: 0c35deb51e72a52696e7f21023827ed8216f5d5e [
file
]
fn
main
()
{
let
data
:
&[
u8
]
=
&[
0
;
10
];
let
_
:
&[
i8
]
=
data
.
into
();
//~^ ERROR the trait bound `&[i8]: From<&[u8]>` is not satisfied
}