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