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

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

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