mirror of
https://github.com/opnsense/src.git
synced 2026-03-10 02:01:51 -04:00
10 lines
122 B
C
10 lines
122 B
C
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
|
|
|
|
|
|
struct S { };
|
|
|
|
int xxxx(int a) {
|
|
struct S comps[a];
|
|
comps[0];
|
|
}
|
|
|