Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
consts
/
const-slice-array-deref.rs
blob: 99563ac968c9114909c2f599fdb6d9a5469d8f8c [
file
] [
log
] [
blame
]
const
ONE
:
[
u16
]
=
[
1
];
//~^ ERROR the size for values of type `[u16]` cannot be known at compilation time
//~| ERROR mismatched types
const
TWO
:
&
'
static
u16
=
&
ONE
[
0
];
//~^ ERROR cannot move a value of type `[u16]`
fn
main
()
{}