Import upstream sources.
[cparse] / tests / fail-leaky-old-style-declarations.c
1 /* old-style function arguments should not leak to the global scope */
2
3 int function(x)
4 int x;
5 {
6 }
7
8 int other()
9 {
10 x;
11 }