summaryrefslogtreecommitdiffstats
path: root/test/SemaObjC/category-method-lookup-2.m
blob: 76048cc2f74cfb693fdc56bc104dcd34bc1a4250 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// RUN: clang-cc -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];
}

@end
OpenPOWER on IntegriCloud