blob: a31d824d1d4539dbd8fbf84e20aa0f5d72c46ae7 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
typedef struct objc_class *Class;
@interface NSObject
- (Class)class;
@end
@interface Bar : NSObject
@end
@interface Bar (Cat)
@end
// NOTE: No class implementation for Bar precedes this category definition.
@implementation Bar (Cat)
// private method.
+ classMethod { return self; }
- instanceMethod {
[[self class] classMethod];
return 0;
}
@end
|