1/* RUN: %clang_cc1 -fsyntax-only -verify %s2*/3 4void foo(int A) { /* expected-note {{previous definition is here}} */5 int A; /* expected-error {{redefinition of 'A'}} */6}7