blob: 1b101d3233f146da2c28d8680610f03692298af3 (
plain)
1
2
3
4
5
6
7
8
|
// 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]
}
}
|