Douglas Gregor | 521db40 | 2010-09-18 15:16:27 +0000 | [diff] [blame^] | 1 | @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) |