Add a C++ indexing test case, where we show the references of overloaded '+' plus signs.

Ok, this is a bit out of place since C++ support is way way off, but it was just too cool to not show it off :-)

llvm-svn: 75601
This commit is contained in:
Argyrios Kyrtzidis 2009-07-14 03:19:46 +00:00
parent ef1c1e572c
commit d49e8dd759
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,12 @@
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) {
}

View File

@ -0,0 +1,9 @@
// RUN: clang-cc -emit-pch %S/cxx-operator-overload-input.cpp -o %t.ast &&
// RUN: index-test %t.ast -point-at %S/cxx-operator-overload-input.cpp:8:17 -print-decls | count 2 &&
// RUN: index-test %t.ast -point-at %S/cxx-operator-overload-input.cpp:8:17 -print-decls | grep ':3:9,' &&
// RUN: index-test %t.ast -point-at %S/cxx-operator-overload-input.cpp: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/cxx-operator-overload-input.cpp:3:15 -print-refs | count 2 &&
// RUN: index-test %t.ast -point-at %S/cxx-operator-overload-input.cpp:3:15 -print-refs | grep ':8:17,' &&
// RUN: index-test %t.ast -point-at %S/cxx-operator-overload-input.cpp:3:15 -print-refs | grep ':8:22,'