]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/netbsd-tests/usr.bin/xlint/lint1/d_constant_conv2.c
Merge ^/vendor/llvm-project/release-10.x up to its last change (upstream
[FreeBSD/FreeBSD.git] / contrib / netbsd-tests / usr.bin / xlint / lint1 / d_constant_conv2.c
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 }