blob: 5e7907062311c7f80f55b14bf6daf7f293bf19ea [file] [log] [blame]
Douglas Gregor42214c52008-04-21 02:02:58 +00001// RUN: clang %s -fsyntax-only -verify
Chris Lattnerb0b42f62008-12-17 07:32:46 +00002int f(int a) { } // expected-note {{previous definition is here}}
Douglas Gregor42214c52008-04-21 02:02:58 +00003int f(int);
Chris Lattnerb0b42f62008-12-17 07:32:46 +00004int f(int a) { } // expected-error {{redefinition of 'f'}}
Douglas Gregor42214c52008-04-21 02:02:58 +00005