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