[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeCompletion / documentation.m
blob03ba10be837863f47f04485fcf635136ca756fa2
1 // Note: the run lines follow their respective tests, since line/column
2 // matter in this test.
4 @interface Base
5 @end
7 @interface Test : Base
8 /// Instance!
9 @property id instanceProp;
10 /// Class!
11 @property (class) id classProp;
12 @end
14 void test(Test *obj) {
15   [obj instanceProp];
16   [Test classProp];
19 // RUN: %clang_cc1 -fsyntax-only -code-completion-brief-comments -code-completion-at=%s:%(line-4):8 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
20 // CHECK-CC1: instanceProp : [#id#]instanceProp : Instance!
21 // CHECK-CC1: setInstanceProp: : [#void#]setInstanceProp:<#(id)#> : Instance!
23 // RUN: %clang_cc1 -fsyntax-only -code-completion-brief-comments -code-completion-at=%s:%(line-7):9 %s -o - | FileCheck -check-prefix=CHECK-CC2 %s
24 // CHECK-CC2: classProp : [#id#]classProp : Class!
25 // CHECK-CC2: setClassProp: : [#void#]setClassProp:<#(id)#> : Class!