Files
clang-p2996/clang/test/Sema/DoubleMethod.m
Fariborz Jahanian ebac2cb235 Patch to diagnose duplicate method implementations.
llvm-svn: 43046
2007-10-16 21:52:23 +00:00

20 lines
338 B
Objective-C

// RUN: clang -fsyntax-only -verify %s
@interface Subclass
{
int ivar;
}
- (void) method;
- (void) method;
@end
@implementation Subclass
- (void) method {;} // expected-error {{previous declaration is here}}
- (void) method {;} // expected-error {{duplicate declaration of method 'method'}}
@end
int main (void) {
return 0;
}