blob: da46d2bb4d8969cb29232baf0ad6351cd2b8c2d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* PR middle-end/105065 */
/* { dg-do compile } */
/* { dg-options "" } */
typedef struct
{
char filler[17];
} big_struct;
big_struct dummy(int size, char array[size]);
int main()
{
dummy(0, 0);
}
|