1 /* Flag information-losing constant conversion in argument lists */
2 
3 int f(unsigned int);
4 
5 void
6 should_fail()
7 {
8 	f(-1);
9 }
10