blob: f9a89988f2f7e373166ec4c68567b47461c3e751 [file] [log] [blame]
Chris Lattnere3995fe2007-11-06 06:07:26 +00001// RUN: clang %s -verify -fsyntax-only
2
3void foo(void);
4void foo(void) {} // expected-error{{previous definition is here}}
5void foo(void);
6void foo(void);
7
8void foo(int); // expected-error {{redefinition of 'foo'}}