d_type_conv3.c revision 302408
1/* Flag information-losing type conversion in argument lists */
2
3int f(unsigned int);
4
5void
6should_fail()
7{
8
9	f(0x7fffffffffffffffLL);
10}
11