NetBSD/regress/usr.bin/xlint/lint1/fail-test3.c

12 lines
128 B
C

/* Flag information-losing type conversion in argument lists */
int f(float);
void
should_fail()
{
double x = 2.0;
f(x);
}