xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/2004-06-18-VariableLengthArrayOfStructures.c (revision e985b929927b5932e3b68f4b50587d458900107a)
1 // RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
2 
3 
4 struct S { };
5 
6 int xxxx(int a) {
7   struct S comps[a];
8   comps[0];
9 }
10 
11