blob: 9ad77f61a732bc30be49f074713f6c8901e1ccaa [file] [log] [blame]
Douglas Gregor42214c52008-04-21 02:02:58 +00001// RUN: clang %s -fsyntax-only -verify
Chris Lattner1336cab2008-11-23 23:12:31 +00002int f(int) { } // expected-note {{previous definition is here}}
Douglas Gregor42214c52008-04-21 02:02:58 +00003int f(int);
Chris Lattner1336cab2008-11-23 23:12:31 +00004int f(int) { } // expected-error {{redefinition of 'f'}}
Douglas Gregor42214c52008-04-21 02:02:58 +00005