Sign in
llvm
/
clang
/
337cba4b3e17b98cfa512dfd12e57f4ccb0859be
/
.
/
test
/
SemaCXX
/
function-overloaded-redecl.cpp
blob: 4d8e57c1b9fe55bbedd10174f8f4ff56bcf0e7c2 [
file
] [
log
] [
blame
]
// RUN: clang-cc -fsyntax-only -verify %s
typedef
const
int
cInt
;
void
f
(
int
);
void
f
(
const
int
);
// redecl
void
f
(
int
)
{
}
// expected-note {{previous definition is here}}
void
f
(
cInt
)
{
}
// expected-error {{redefinition of 'f'}}