minix/external/bsd/llvm/dist/clang/test/SemaObjC/method-lookup-4.m
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

63 lines
985 B
Objective-C

// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
@interface NSObject {}
@end
@interface MyClass : NSObject {}
@end
@interface MyClass (MyCategorie)
@end
@interface MySubClass : MyClass {}
@end
@interface MySubSubClass : MySubClass {}
@end
@implementation NSObject (NSObjectCategory)
- (void)rootMethod {}
@end
@implementation MyClass
+ (void)myClassMethod { }
- (void)myMethod { }
@end
@implementation MyClass (MyCategorie)
+ (void)myClassCategoryMethod { }
- (void)categoryMethod {}
@end
@implementation MySubClass
- (void)mySubMethod {}
- (void)myTest {
[self mySubMethod];
// should lookup method in superclass implementation if available
[self myMethod];
[super myMethod];
[self categoryMethod];
[super categoryMethod];
// instance method of root class
[MyClass rootMethod];
[MyClass myClassMethod];
[MySubClass myClassMethod];
[MyClass myClassCategoryMethod];
[MySubClass myClassCategoryMethod];
}
@end