brintos

brintos / llvm-project-archived public Read only

0
0
Text · 174 B · 519e8fd Raw
7 lines · c
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