Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
bc1c877fe28fb6a825f0b226a0a2da99e713ea03
/
.
/
test
/
Sema
/
redefinition.c
blob: 9ad77f61a732bc30be49f074713f6c8901e1ccaa [
file
] [
log
] [
blame
]
// RUN: clang %s -fsyntax-only -verify
int
f
(
int
)
{
}
// expected-note {{previous definition is here}}
int
f
(
int
);
int
f
(
int
)
{
}
// expected-error {{redefinition of 'f'}}