beginning of a testscript
[cparser] / parsetest / shouldfail / kr2.c
index dd676f0..828663b 100644 (file)
@@ -1,7 +1,7 @@
 
 int a(first, second, third)
        const char *third;
-       int first;
+       float first;
 {
        printf("Args: %d %f %s\n", first, second, third);
        return 0;
@@ -9,6 +9,6 @@ int a(first, second, third)
 
 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;
 }