Sign in
rust
/
rust-lang
/
rust
/
67d45f49e09cb8f355df2ffae22cfc3d7ee6c278
/
.
/
tests
/
ui
/
unsized-locals
/
simple-unsized-locals.rs
blob: e6c8bdc7a8851c730732618ec578d1d2eb7f2277 [
file
] [
log
] [
blame
]
fn
main
()
{
let
foo
:
Box
<[
u8
]>
=
Box
::
new
(*
b
"foo"
);
let
_foo
:
[
u8
]
=
*
foo
;
//~ERROR the size for values of type `[u8]` cannot be known at compilation time [E0277]
}