Fix ICE in substring-handling building 502.gcc_r (PR 87562)
[official-gcc.git] / gcc / testsuite / gcc.dg / pr59963-1.c
blobdbb347f990ef933689863d8e7664962e3d6042a9
1 /* PR c/59963 */
2 /* { dg-do compile } */
3 /* { dg-options "-std=gnu89 -Wdouble-promotion" } */
5 extern void baz ();
6 extern void qux (int, ...);
8 void
9 foo (float f)
11 bar (f); /* { dg-warning "8:implicit conversion" } */
12 baz (f); /* { dg-warning "8:implicit conversion" } */
13 qux (42, f); /* { dg-warning "12:implicit conversion" } */