Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
non-constant-expr-for-arr-len.rs
blob: 1b101d3233f146da2c28d8680610f03692298af3 [
file
] [
log
] [
blame
] [
edit
]
// Check that non constant exprs fail for array repeat syntax
fn
main
()
{
fn
bar
(
n
:
usize
)
{
let
_x
=
[
0
;
n
];
//~^ ERROR attempt to use a non-constant value in a constant [E0435]
}
}