Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
7605618e3b0e7c3855ca804dbe0692a89835c71a
/
.
/
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'}}