libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / Warray-parameter-10.c
blob378f8afbd34087c404c0006d7c9b26a5f3389aed
1 /* PR c/102759 - ICE calling a function taking an argument redeclared
2 without a prototype.
3 { dg-do compile }
4 { dg-options "-Wall" } */
6 void f (void)
8 void gia (int[2]);
9 void g ();
12 /* Redeclaring the g(int[]) above without a prototype loses it. */
13 void gia ();
14 void g (int[2]);
16 void h (void )
18 gia (gia);
19 gia (g);