summaryrefslogtreecommitdiffstats
path: root/test/SemaObjC/category-method-lookup-2.m
blob: ed347c7cde0cb87d83846973e92cf9e6c2441ff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics

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