blob: fe8851a6a226719406529427fb6588c6d0655f25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
class Cls {
public:
Cls operator +(const Cls &RHS);
};
static void bar() {
Cls x1, x2, x3;
Cls x4 = x1 + x2 + x3;
}
Cls Cls::operator +(const Cls &RHS) {
}
// RUN: clang-cc -emit-pch %s -o %t.ast &&
// RUN: index-test %t.ast -point-at %s:8:17 -print-decls | count 2 &&
// RUN: index-test %t.ast -point-at %s:8:17 -print-decls | grep ':3:9,' &&
// RUN: index-test %t.ast -point-at %s:8:17 -print-decls | grep ':11:10,' &&
// Yep, we can show references of '+' plus signs that are overloaded, w00t!
// RUN: index-test %t.ast -point-at %s:3:15 -print-refs | count 2 &&
// RUN: index-test %t.ast -point-at %s:3:15 -print-refs | grep ':8:17,' &&
// RUN: index-test %t.ast -point-at %s:3:15 -print-refs | grep ':8:22,'
|