PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / old-style-prom-3.c
blob720367f2e3303959f3bad0c65bdb9e5ab6fbb4a0
1 /* Test for prototype followed by old-style definition, as in
2 dremf-type-compat-3.c but with a non-built-in function. */
3 /* { dg-do compile } */
4 /* { dg-options "-pedantic-errors" } */
6 float f (float, float); /* { dg-error "prototype declaration" } */
8 float
9 f (x, y)
10 float x; /* { dg-error "promoted argument 'x' doesn't match prototype" } */
11 float y; /* { dg-error "promoted argument 'y' doesn't match prototype" } */
13 return x + y;