issue a warning if returning the address of a local variable
[cparser] / parsetest / shouldfail / kr1.c
1
2 int a(first, second, third)
3         float second;
4         float first;
5         const char *third;
6         int first;
7 {
8         printf("Args: %d %f %s\n", first, second, third);
9         return 0;
10 }
11
12 int main(void)
13 {
14         a(42, 42.42, "What is 6 times 9?\n");
15         return 0;
16 }