7 lines
171 B
C
7 lines
171 B
C
/* RUN: clang-cc -fsyntax-only -verify %s
|
|
*/
|
|
|
|
int foo(int A) { /* expected-note {{previous definition is here}} */
|
|
int A; /* expected-error {{redefinition of 'A'}} */
|
|
}
|