Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
unsized-locals
/
issue-30276.rs
blob: 6b67ebbec1c0c441b5395e7f4a463a49d8f49fc1 [
file
] [
log
] [
blame
]
struct
Test
([
i32
]);
fn
main
()
{
let
_x
:
fn
(
_
)
->
Test
=
Test
;
//~^ ERROR the size for values of type `[i32]` cannot be known at compilation time
}