blob: 2c87163fc0453690ada51290678859355d60b4b6 [file] [log] [blame]
// RUN: clang -verify -emit-llvm -o %t %s
int f0(int x) {
int vla[x]; // expected-error {{cannot codegen this variable-length array yet}}
return vla[x-1];
}