blob: e43c1a0ab03256dd7ad25660fe09bbaa0786893e [file] [log] [blame]
Daniel Dunbarffd408a2009-03-24 02:24:46 +00001// RUN: clang-cc -fsyntax-only -verify %s
Fariborz Jahanian080f3d02007-10-16 21:52:23 +00002
3@interface Subclass
4{
5 int ivar;
6}
7
8- (void) method;
9- (void) method;
10@end
11
12@implementation Subclass
Chris Lattner1336cab2008-11-23 23:12:31 +000013- (void) method {;} // expected-note {{previous declaration is here}}
Fariborz Jahanian080f3d02007-10-16 21:52:23 +000014- (void) method {;} // expected-error {{duplicate declaration of method 'method'}}
15@end
16
17int main (void) {
18 return 0;
19}