blob: da46d2bb4d8969cb29232baf0ad6351cd2b8c2d6 [file] [log] [blame]
/* 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);
}