summaryrefslogtreecommitdiffstats
path: root/clang/test/Sema/redefinition.c
blob: 9ad77f61a732bc30be49f074713f6c8901e1ccaa (plain)
1
2
3
4
5
// 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'}}

OpenPOWER on IntegriCloud