2010-11-03 08:35:38 +08:00
|
|
|
// Test is line- and column-sensitive. Run lines are below.
|
|
|
|
|
|
|
|
struct X {
|
|
|
|
X();
|
|
|
|
X(int);
|
|
|
|
X(int, int);
|
|
|
|
X(const X&);
|
|
|
|
};
|
|
|
|
|
|
|
|
X getX(int value) {
|
|
|
|
switch (value) {
|
|
|
|
case 1: return X(value);
|
|
|
|
case 2: return X(value, value);
|
|
|
|
case 3: return (X)value;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return X();
|
|
|
|
}
|
|
|
|
|
|
|
|
// RUN: c-index-test -cursor-at=%s:12:20 %s | FileCheck -check-prefix=CHECK-VALUE-REF %s
|
|
|
|
// RUN: c-index-test -cursor-at=%s:13:21 %s | FileCheck -check-prefix=CHECK-VALUE-REF %s
|
|
|
|
// RUN: c-index-test -cursor-at=%s:13:28 %s | FileCheck -check-prefix=CHECK-VALUE-REF %s
|
|
|
|
// RUN: c-index-test -cursor-at=%s:14:23 %s | FileCheck -check-prefix=CHECK-VALUE-REF %s
|
|
|
|
// CHECK-VALUE-REF: DeclRefExpr=value:10:12
|
|
|
|
|
2010-11-06 05:11:19 +08:00
|
|
|
// RUN: c-index-test -cursor-at=%s:12:18 %s | FileCheck -check-prefix=CHECK-CONSTRUCTOR1 %s
|
|
|
|
// RUN: c-index-test -cursor-at=%s:13:18 %s | FileCheck -check-prefix=CHECK-CONSTRUCTOR2 %s
|
|
|
|
// RUN: c-index-test -cursor-at=%s:14:19 %s | FileCheck -check-prefix=CHECK-CONSTRUCTOR1 %s
|
|
|
|
// RUN: c-index-test -cursor-at=%s:17:10 %s | FileCheck -check-prefix=CHECK-CONSTRUCTOR3 %s
|
2010-11-03 08:35:38 +08:00
|
|
|
// CHECK-TYPE-REF: TypeRef=struct X:3:8
|
2010-11-06 05:11:19 +08:00
|
|
|
// CHECK-CONSTRUCTOR1: CallExpr=X:5:3
|
|
|
|
// CHECK-CONSTRUCTOR2: CallExpr=X:6:3
|
|
|
|
// CHECK-CONSTRUCTOR3: CallExpr=X:4:3
|