blob: 383a06bd1ac9337adfb60ba1d6aa739a538e38e7 [file] [log] [blame]
// RUN: clang -verify -emit-llvm -o - %s
int f0(int x) {
int vla[x];
return vla[x-1]; // expected-error {{cannot compile this return inside scope with VLA yet}}
}