Sign in
cobalt
/
cobalt
/
3cd5432aaed8f14f27f66ade1b51aa71df939492
/
.
/
third_party
/
llvm-project
/
clang
/
test
/
Parser
/
argument_redef.c
blob: 519e8fd2033f8451ac75f71037c9880797993799 [
file
] [
log
] [
blame
]
/* RUN: %clang_cc1 -fsyntax-only -verify %s
*/
void
foo
(
int
A
)
{
/* expected-note {{previous definition is here}} */
int
A
;
/* expected-error {{redefinition of 'A'}} */
}