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