Home | History | Annotate | Download | only in Parser
      1 /* RUN: %clang_cc1 -fsyntax-only -verify %s
      2 */
      3 
      4 void foo(int A) { /* expected-note {{previous definition is here}} */
      5   int A; /* expected-error {{redefinition of 'A'}} */
      6 }
      7