mirror of
https://github.com/opnsense/src.git
synced 2026-04-24 15:48:48 -04:00
7 lines
147 B
C
7 lines
147 B
C
// RUN: %llvmgcc -S -w %s -o -
|
|
// PR1170
|
|
int f(int a, struct {int b[a];} c) { return c.b[0]; }
|
|
|
|
int g(struct {int b[1];} c) {
|
|
return c.b[0];
|
|
}
|