llvm-6502/test/CFrontend/2004-06-18-VariableLengthArrayOfStructures.c
Chris Lattner 553a7abc78 Test for PR374
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14240 91177308-0d34-0410-b5e6-96231b3b80d8
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];
}