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

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