blob: 519e8fd2033f8451ac75f71037c9880797993799 [file] [log] [blame]
Shih-wei Liaoea285162010-06-04 12:34:56 -07001/* RUN: %clang_cc1 -fsyntax-only -verify %s
2*/
3
4void foo(int A) { /* expected-note {{previous definition is here}} */
5 int A; /* expected-error {{redefinition of 'A'}} */
6}