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

11 lines
137 B
C

/* Flag information-losing type conversion in argument lists */
int f(unsigned int);
void
should_fail()
{
f(0x7fffffffffffffffLL);
}