diff options
| author | John McCall <rjmccall@apple.com> | 2009-11-24 20:33:45 +0000 |
|---|---|---|
| committer | John McCall <rjmccall@apple.com> | 2009-11-24 20:33:45 +0000 |
| commit | 45b1a47a9cf7bda4dcee3b382f8069ca13ef08b6 (patch) | |
| tree | 989b0f824e3604629fc62097deb0a8a1ba56bee7 /clang/test/SemaTemplate/dependent-names.cpp | |
| parent | b3e0168428de7994560a37ae1d931dd9d1f367a9 (diff) | |
| download | bcm5719-llvm-45b1a47a9cf7bda4dcee3b382f8069ca13ef08b6.tar.gz bcm5719-llvm-45b1a47a9cf7bda4dcee3b382f8069ca13ef08b6.zip | |
Fix some major problems dealing with dependently-qualified names in implicit
member-reference contexts. Fixes some clang-on-clang asserts.
llvm-svn: 89796
Diffstat (limited to 'clang/test/SemaTemplate/dependent-names.cpp')
| -rw-r--r-- | clang/test/SemaTemplate/dependent-names.cpp | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/clang/test/SemaTemplate/dependent-names.cpp b/clang/test/SemaTemplate/dependent-names.cpp index 95ee2d2b9d1..aef43cb29db 100644 --- a/clang/test/SemaTemplate/dependent-names.cpp +++ b/clang/test/SemaTemplate/dependent-names.cpp @@ -14,3 +14,73 @@ int a0[sizeof(X<int>::a) == sizeof(double) ? 1 : -1]; // PR4365. template<class T> class Q; template<class T> class R : Q<T> {T current;}; + + +namespace test0 { + template <class T> class Base { + void instance_foo(); + static void static_foo(); + class Inner { + void instance_foo(); + static void static_foo(); + }; + }; + + template <class T> class Derived1 : Base<T> { + void test0() { + Base<T>::static_foo(); + Base<T>::instance_foo(); + } + + void test1() { + Base<T>::Inner::static_foo(); + Base<T>::Inner::instance_foo(); // expected-error {{call to non-static member function without an object argument}} + } + + static void test2() { + Base<T>::static_foo(); + Base<T>::instance_foo(); // expected-error {{call to non-static member function without an object argument}} + } + + static void test3() { + Base<T>::Inner::static_foo(); + Base<T>::Inner::instance_foo(); // expected-error {{call to non-static member function without an object argument}} + } + }; + + template <class T> class Derived2 : Base<T>::Inner { + void test0() { + Base<T>::static_foo(); + Base<T>::instance_foo(); // expected-error {{call to non-static member function without an object argument}} + } + + void test1() { + Base<T>::Inner::static_foo(); + Base<T>::Inner::instance_foo(); + } + + static void test2() { + Base<T>::static_foo(); + Base<T>::instance_foo(); // expected-error {{call to non-static member function without an object argument}} + } + + static void test3() { + Base<T>::Inner::static_foo(); + Base<T>::Inner::instance_foo(); // expected-error {{call to non-static member function without an object argument}} + } + }; + + void test0() { + Derived1<int> d1; + d1.test0(); + d1.test1(); // expected-note {{in instantiation of member function}} + d1.test2(); // expected-note {{in instantiation of member function}} + d1.test3(); // expected-note {{in instantiation of member function}} + + Derived2<int> d2; + d2.test0(); // expected-note {{in instantiation of member function}} + d2.test1(); + d2.test2(); // expected-note {{in instantiation of member function}} + d2.test3(); // expected-note {{in instantiation of member function}} + } +} |

