Sign in
fuchsia
/
third_party
/
rust
/
e356279bdfe6840236877b298f0c577e0f9221ff
/
.
/
tests
/
ui
/
non-constant-expr-for-arr-len.rs
blob: 1b101d3233f146da2c28d8680610f03692298af3 [
file
] [
log
] [
blame
]
// 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]
}
}