redefinition.c revision 777f07b6cd595bb0922e05768e5703fbc92b5695
1// RUN: clang %s -fsyntax-only -verify
2int f(int a) { } // expected-note {{previous definition is here}}
3int f(int);
4int f(int a) { } // expected-error {{redefinition of 'f'}}
5
6