mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
9 lines
208 B
Rust
9 lines
208 B
Rust
// 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]
|
|
}
|
|
}
|