xref: /minix3/tests/usr.bin/xlint/lint1/d_constant_conv1.c (revision 11be35a165022172ed3cea20f2b5df0307540b0e)
1*11be35a1SLionel Sambuc /* Flag information-losing constant conversion in argument lists */
2*11be35a1SLionel Sambuc 
3*11be35a1SLionel Sambuc int f(unsigned int);
4*11be35a1SLionel Sambuc 
5*11be35a1SLionel Sambuc void
should_fail()6*11be35a1SLionel Sambuc should_fail()
7*11be35a1SLionel Sambuc {
8*11be35a1SLionel Sambuc 	f(-1);
9*11be35a1SLionel Sambuc }
10