more cases to test added
[cparser] / parsetest / shouldfail / kr2.c
1
2 int a(first, second, third)
3         const char *third;
4         float first;
5 {
6         printf("Args: %d %f %s\n", first, second, third);
7         return 0;
8 }
9
10 int main(void)
11 {
12         a(42.32, 42, "What is 6 times 9?\n");
13         return 0;
14 }