1 2 3 4 5 6
// 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]; }