blob: 664119acdd49f797a65167dff1e41da62647e8e3 [file] [log] [blame]
Daniel Dunbar01de4912008-10-27 22:11:01 +00001// RUN: clang -verify -emit-llvm -o %t %s
2
3int f0(int x) {
Anders Carlsson842a36d2008-12-20 19:33:21 +00004 int vla[x];
5 return vla[x-1]; // expected-error {{cannot codegen this return inside scope with VLA yet}}
Daniel Dunbar01de4912008-10-27 22:11:01 +00006}