blob: 2c87163fc0453690ada51290678859355d60b4b6 [file] [log] [blame]
Daniel Dunbar01de4912008-10-27 22:11:01 +00001// RUN: clang -verify -emit-llvm -o %t %s
2
3int f0(int x) {
4 int vla[x]; // expected-error {{cannot codegen this variable-length array yet}}
5 return vla[x-1];
6}