builtin_nanf is const
[cparser] / parsetest / shouldfail / kr2.c
index dd676f0..b6ee75c 100644 (file)
@@ -1,14 +1,14 @@
 
 int a(first, second, third)
        const char *third;
-       int first;
+       float first;
 {
-       printf("Args: %d %f %s\n", first, second, third);
+       printf("Args: %f %d %s\n", first, second, third);
        return 0;
 }
 
 int main(void)
 {
-       a(42, 42.42, "What is 6 times 9?\n");
+       a(42.32, 42, "What is 6 times 9?\n");
        return 0;
 }