Sign in
fuchsia
/
third_party
/
rust
/
4717bdfc1343953b770887460d5822c87e434d97
/
.
/
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]
}
}