blob: abf78fb0955660c6061222b33f5c2e9436092646 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
4struct S { };
5
6int xxxx(int a) {
7 struct S comps[a];
8 comps[0];
9}
10