aboutsummaryrefslogtreecommitdiff
path: root/test/Parser/traditional_arg_scope.c
blob: e1b02567eec22740e18f4558c63354cf1aacc440 (plain)
1
2
3
4
5
6
7
// RUN: clang -fsyntax-only %s -verify

x(a) int a; {return a;}
y(b) int b; {return a;} // expected-error {{use of undeclared identifier}}

// PR2332
a(a)int a;{a=10;return a;}