blob: 0171803ffe2d6dd84f949403386b061e9367c980 [file] [log] [blame]
Douglas Gregor521db402010-09-18 15:16:27 +00001@interface A
2- (int)method:(id)param1;
3
4@property int prop1;
5@end
6
7@implementation A
8- (int)method:(id)param1 {
9
10}
11@end
12
13// RUN: c-index-test -code-completion-at=%s:9:2 %s | FileCheck -check-prefix=CHECK-CC1 %s
14// CHECK-CC1: NotImplemented:{ResultType SEL}{TypedText _cmd} (80)
15// CHECK-CC1: NotImplemented:{ResultType A *}{TypedText self} (8)