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