summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr59963-1.c
blob: dbb347f990ef933689863d8e7664962e3d6042a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* PR c/59963 */
/* { dg-do compile } */
/* { dg-options "-std=gnu89 -Wdouble-promotion" } */

extern void baz ();
extern void qux (int, ...);

void
foo (float f)
{
  bar (f); /* { dg-warning "8:implicit conversion" } */
  baz (f); /* { dg-warning "8:implicit conversion" } */
  qux (42, f); /* { dg-warning "12:implicit conversion" } */
}