1 // Test is line- and column-sensitive. Run lines are below.
2
3 struct X {
4 X();
5 X(int);
6 X(int, int);
7 X(const X&);
8 };
9
getX(int value)10 X getX(int value) {
11 switch (value) {
12 case 1: return X(value);
13 case 2: return X(value, value);
14 case 3: return (X)value;
15 default: break;
16 }
17 return X();
18 }
19
20 struct Y {
21 int member;
22
23 X getX();
24 };
25
getX()26 X Y::getX() {
27 return member;
28 }
29
30 struct YDerived : Y {
getAnotherXYDerived31 X getAnotherX() { return member; }
32 };
33
test()34 void test() {
35 X foo;
36
37 try {
38 } catch (X e) {
39 X x;
40 }
41
42 struct LocalS {
43 void meth() {
44 int x;
45 ++x;
46 }
47 };
48 }
49
50 // RUN: c-index-test -cursor-at=%s:6:4 %s | FileCheck -check-prefix=CHECK-COMPLETION-1 %s
51 // CHECK-COMPLETION-1: CXXConstructor=X:6:3
52 // CHECK-COMPLETION-1-NEXT: Completion string: {TypedText X}{LeftParen (}{Placeholder int}{Comma , }{Placeholder int}{RightParen )}
53
54 // RUN: c-index-test -cursor-at=%s:31:16 %s | FileCheck -check-prefix=CHECK-COMPLETION-2 %s
55 // CHECK-COMPLETION-2: CXXMethod=getAnotherX:31:5 (Definition)
56 // CHECK-COMPLETION-2-NEXT: Completion string: {ResultType X}{TypedText getAnotherX}{LeftParen (}{RightParen )}
57
58 // RUN: c-index-test -cursor-at=%s:12:20 %s | FileCheck -check-prefix=CHECK-VALUE-REF %s
59 // RUN: c-index-test -cursor-at=%s:13:21 %s | FileCheck -check-prefix=CHECK-VALUE-REF %s
60 // RUN: c-index-test -cursor-at=%s:13:28 %s | FileCheck -check-prefix=CHECK-VALUE-REF %s
61 // RUN: c-index-test -cursor-at=%s:14:23 %s | FileCheck -check-prefix=CHECK-VALUE-REF %s
62 // CHECK-VALUE-REF: DeclRefExpr=value:10:12
63
64 // RUN: c-index-test -cursor-at=%s:12:18 %s | FileCheck -check-prefix=CHECK-CONSTRUCTOR1 %s
65 // RUN: c-index-test -cursor-at=%s:13:18 %s | FileCheck -check-prefix=CHECK-CONSTRUCTOR2 %s
66 // RUN: c-index-test -cursor-at=%s:14:19 %s | FileCheck -check-prefix=CHECK-CONSTRUCTOR1 %s
67 // RUN: c-index-test -cursor-at=%s:17:10 %s | FileCheck -check-prefix=CHECK-CONSTRUCTOR3 %s
68 // CHECK-TYPE-REF: TypeRef=struct X:3:8
69 // CHECK-CONSTRUCTOR1: CallExpr=X:5:3
70 // CHECK-CONSTRUCTOR2: CallExpr=X:6:3
71 // CHECK-CONSTRUCTOR3: CallExpr=X:4:3
72
73 // RUN: c-index-test -cursor-at=%s:23:3 %s | FileCheck -check-prefix=CHECK-RETTYPE %s
74 // RUN: c-index-test -cursor-at=%s:26:1 %s | FileCheck -check-prefix=CHECK-RETTYPE %s
75 // CHECK-RETTYPE: TypeRef=struct X:3:8
76
77 // RUN: c-index-test -cursor-at=%s:23:7 %s | FileCheck -check-prefix=CHECK-MEMFUNC-DECL %s
78 // CHECK-MEMFUNC-DECL: CXXMethod=getX:23:5
79 // RUN: c-index-test -cursor-at=%s:26:7 %s | FileCheck -check-prefix=CHECK-MEMFUNC-DEF %s
80 // CHECK-MEMFUNC-DEF: CXXMethod=getX:26:6
81
82 // RUN: c-index-test -cursor-at=%s:26:3 %s | FileCheck -check-prefix=CHECK-TYPEREF-Y %s
83 // CHECK-TYPEREF-Y: TypeRef=struct Y:20:8
84
85 // RUN: c-index-test -cursor-at=%s:27:10 %s | FileCheck -check-prefix=CHECK-IMPLICIT-MEMREF %s
86 // RUN: c-index-test -cursor-at=%s:31:28 %s | FileCheck -check-prefix=CHECK-IMPLICIT-MEMREF %s
87 // CHECK-IMPLICIT-MEMREF: MemberRefExpr=member:21:7
88
89 // RUN: c-index-test -cursor-at=%s:35:5 %s | FileCheck -check-prefix=CHECK-DECL %s
90 // CHECK-DECL: VarDecl=foo:35:5
91
92 // RUN: c-index-test -cursor-at=%s:21:3 %s | FileCheck -check-prefix=CHECK-MEMBER %s
93 // CHECK-MEMBER: FieldDecl=member:21:7 (Definition)
94 // CHECK-MEMBER-NEXT: Completion string: {ResultType int}{TypedText member}
95
96 // RUN: c-index-test -cursor-at=%s:38:12 -cursor-at=%s:39:5 %s | FileCheck -check-prefix=CHECK-CXXCATCH %s
97 // CHECK-CXXCATCH: TypeRef=struct X:3:8
98 // CHECK-CXXCATCH-NEXT: TypeRef=struct X:3:8
99
100 // RUN: c-index-test -test-load-source-usrs local %s | FileCheck -check-prefix=CHECK-USR %s
101 // CHECK-USR: get-cursor.cpp c:get-cursor.cpp@472@F@test#@e Extent=[38:12 - 38:15]
102 // CHECK-USR: get-cursor.cpp c:get-cursor.cpp@483@F@test#@x Extent=[39:5 - 39:8]
103
104 // RUN: c-index-test -cursor-at=%s:45:9 %s | FileCheck -check-prefix=CHECK-LOCALCLASS %s
105 // CHECK-LOCALCLASS: 45:9 DeclRefExpr=x:44:11 Extent=[45:9 - 45:10] Spelling=x ([45:9 - 45:10])
106