]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/netbsd-tests/usr.bin/xlint/lint1/d_type_conv2.c
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / netbsd-tests / usr.bin / xlint / lint1 / d_type_conv2.c
1 /* Flag information-losing type conversion in argument lists */
2
3 int f(float);
4
5 void
6 should_fail()
7 {
8         double x = 2.0;
9
10         f(x);
11 }