Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
coercion
/
coercion-slice.rs
blob: b756c8f8203a086df7e2b8690d5a1c728db3f44a [
file
] [
log
] [
blame
]
// Tests that we forbid coercion from `[T; n]` to `&[T]`
fn
main
()
{
let
_
:
&[
i32
]
=
[
0
];
//~^ ERROR mismatched types
//~| expected `&[i32]`, found array `[{integer}; 1]`
}