44112ac4e38aceaa838e5f31f58880ed0432bd96
[cparser] / shouldfail / ref_local.c
1 int *test(void) {
2         int x = 3;
3
4         return &x;
5 }
6
7 int main() {
8         return *test();
9 }