blob: c45779fdeeff394ec1dd6555b30c34b4dfd3f5fa [file] [log] [blame]
Douglas Gregorf0097952008-04-21 02:02:58 +00001// RUN: clang %s -fsyntax-only -verify
2int f(int) { } // expected-error{{previous definition is here}}
3int f(int);
4int f(int) { } // expected-error{{redefinition of 'f'}}
5