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]
}
}