1/* Flag information-losing type conversion in argument lists */
2
3int f(float);
4
5void
6should_fail()
7{
8	double x = 2.0;
9
10	f(x);
11}
12