blob: 519e8fd2033f8451ac75f71037c9880797993799 [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001/* 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}