| // Note: the run lines follow their respective tests, since line/column |
| @protocol FooTestProtocol |
| - protocolInstanceMethod; |
| @interface Foo <FooTestProtocol> { |
| + (int)classMethod1:a withKeyword:b; |
| @interface Foo (FooTestCategory) |
| - categoryInstanceMethod; |
| template<typename T> struct RetainPtr { |
| template <typename U> struct RemovePointer { typedef U Type; }; |
| template <typename U> struct RemovePointer<U*> { typedef U Type; }; |
| typedef typename RemovePointer<T>::Type* PtrType; |
| explicit operator PtrType() const; |
| void func(const RetainPtr<Foo>& ptr) |
| void func(const RetainPtr<id <FooTestProtocol>>& ptr) |
| // RUN: %clang_cc1 -fsyntax-only -std=c++11 -code-completion-at=%s:33:8 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s |
| // CHECK-CC1: categoryInstanceMethod : [#id#]categoryInstanceMethod |
| // CHECK-CC1: instanceMethod1 : [#id#]instanceMethod1 |
| // CHECK-CC1: protocolInstanceMethod : [#id#]protocolInstanceMethod |
| // RUN: %clang_cc1 -fsyntax-only -std=c++11 -code-completion-at=%s:38:8 %s -o - | FileCheck -check-prefix=CHECK-CC2 %s |
| // CHECK-CC2: protocolInstanceMethod : [#id#]protocolInstanceMethod |