7164372cfa
lint checking.
12 lines
128 B
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);
|
|
}
|