xref: /freebsd-src/contrib/netbsd-tests/usr.bin/xlint/lint1/d_constant_conv2.c (revision a466cc55373fc3cf86837f09da729535b57e69a1)
1 /* Flag information-losing constant conversion in argument lists */
2 
3 int f(unsigned int);
4 
5 void
6 should_fail()
7 {
8 	f(2.1);
9 }
10