7 lines
163 B
C
7 lines
163 B
C
// 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];
|
|
}
|