Rebase.
[official-gcc.git] / gcc / testsuite / gcc.dg / pr59963-1.c
blob4a369db4863f8e1984910855a041bddd9bdd84e4
1 /* PR c/59963 */
2 /* { dg-do compile } */
3 /* { dg-options "-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" } */