issue a warning if returning the address of a local variable
[cparser] / parsetest / shouldfail / decl_after_label.c
1 void foo(void)
2 {
3 lable:
4         int jummy = 5;
5 }