Douglas Gregor | 55385fe | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 1 | /* Note: the RUN lines are near the end of the file, since line/column |
| 2 | matter for this test. */ |
| 3 | |
| 4 | @protocol Protocol1 |
| 5 | @end |
| 6 | |
| 7 | @protocol Protocol2; |
| 8 | |
| 9 | void f(id<Protocol1,Protocol2>); |
| 10 | |
Douglas Gregor | 083128f | 2009-11-18 04:49:41 +0000 | [diff] [blame] | 11 | @protocol Protocol0; |
| 12 | @protocol NewProtocol |
| 13 | { |
| 14 | } |
| 15 | @end |
| 16 | |
Douglas Gregor | 55385fe | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 17 | // RUN: c-index-test -code-completion-at=%s:9:11 %s | FileCheck -check-prefix=CHECK-CC1 %s |
| 18 | // CHECK-CC1: ObjCProtocolDecl:{TypedText Protocol1} |
Douglas Gregor | 70c2335 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 19 | // CHECK-CC1-NEXT: ObjCProtocolDecl:{TypedText Protocol2} |
Douglas Gregor | 55385fe | 2009-11-18 04:19:12 +0000 | [diff] [blame] | 20 | // RUN: c-index-test -code-completion-at=%s:9:21 %s | FileCheck -check-prefix=CHECK-CC2 %s |
| 21 | // CHECK-CC2-NOT: ObjCProtocolDecl:{TypedText Protocol1} |
| 22 | // CHECK-CC2: ObjCProtocolDecl:{TypedText Protocol2} |
Douglas Gregor | 083128f | 2009-11-18 04:49:41 +0000 | [diff] [blame] | 23 | // RUN: c-index-test -code-completion-at=%s:12:11 %s | FileCheck -check-prefix=CHECK-CC3 %s |
| 24 | // CHECK-CC3: ObjCProtocolDecl:{TypedText Protocol0} |
| 25 | // CHECK-CC3-NEXT: ObjCProtocolDecl:{TypedText Protocol2} |
Douglas Gregor | 70c2335 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 26 | |
| 27 | // RUN: env CINDEXTEST_EDITING=1 CINDEXTEST_COMPLETION_CACHING=1 c-index-test -code-completion-at=%s:9:11 %s | FileCheck -check-prefix=CHECK-CC1 %s |