Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
ac4d13c0cc78a3b28a8af8001e4da6b18fa9029d
/
.
/
test
/
SemaCXX
/
function-overloaded-redecl.cpp
blob: 00778816920e2cceb64023e7a1a2f7e194232a27 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -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'}}