Sign in
cobalt
/
cobalt
/
0c2b1d4428f8ae16220e86a16bebd07ff691a412
/
.
/
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'}} */
}