argument_redef.c 174 B

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