summaryrefslogtreecommitdiff
path: root/test/Parser/argument_redef.c
blob: 16263f43571b2ebbb49c458612483102f80f8474 (plain)
1
2
3
4
5
6
/* RUN: clang -fsyntax-only -verify %s
*/

int foo(int A) { /* expected-note {{previous definition is here}} */
  int A; /* expected-error {{redefinition of 'A'}} */
}