Sign in
◑
Theme
rust
/
rust
/
c1d608bb7e862c8d8b74ce7cfc042fa98e9d4792
/
.
/
tests
/
ui
/
typeck
/
repeat-expr-checks-wf.rs
blob: b8a2a0ceb58807f8e39be26950ffd30c8b3eb133 [
file
]
trait
Foo
{
const
ASSOC
:
[
u8
];
}
fn
bar
<
T
:
Foo
>()
{
let
a
=
[
T
::
ASSOC
;
2
];
//~^ ERROR: the size for values of type `[u8]` cannot be known at compilation time
}
fn
main
()
{}