Files
clang-p2996/llvm/test/Regression/CFrontend/2004-06-18-VariableLengthArrayOfStructures.c
Chris Lattner 649154cace Test for PR374
llvm-svn: 14240
2004-06-19 01:08:12 +00:00

9 lines
70 B
C

struct S { };
int xxxx(int a) {
struct S comps[a];
comps[0];
}