builtin_nanf is const
[cparser] / parsetest / shouldfail / kr2.c
index 828663b..b6ee75c 100644 (file)
@@ -3,7 +3,7 @@ int a(first, second, third)
        const char *third;
        float first;
 {
-       printf("Args: %d %f %s\n", first, second, third);
+       printf("Args: %f %d %s\n", first, second, third);
        return 0;
 }