llvm-project/llvm/test/FrontendC/2004-06-18-VariableLengthAr...

11 lines
125 B
C
Raw Normal View History

2004-11-07 06:41:00 +08:00
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2004-06-19 09:08:12 +08:00
struct S { };
int xxxx(int a) {
struct S comps[a];
comps[0];
}