diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-11-10 01:18:17 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-11-10 01:18:17 +0000 |
commit | d777e2845110469182809e4efc577899395805f7 (patch) | |
tree | 68267a297529091ba38222cc5dae574051938afb /test/SemaTemplate | |
parent | c4027c82ad4a61f2da1b893ac8fe47bf11e5d50d (diff) |
Diagnostic circular inheritance involving dependent base classes. We
would have diagnosed this at instantiation time anyway, if only we
didn't hang on all of these test cases. Fixes <rdar://problem/12629723>
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@167651 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaTemplate')
-rw-r--r-- | test/SemaTemplate/dependent-names.cpp | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/test/SemaTemplate/dependent-names.cpp b/test/SemaTemplate/dependent-names.cpp index 924bad9257..4e322d909d 100644 --- a/test/SemaTemplate/dependent-names.cpp +++ b/test/SemaTemplate/dependent-names.cpp @@ -319,8 +319,27 @@ namespace PR11421 { template < unsigned > struct X { static const unsigned dimension = 3; template<unsigned dim=dimension> - struct Y: Y<dim> { }; // expected-error {{incomplete type}} expected-note {{is not complete until the closing}} + struct Y: Y<dim> { }; // expected-error{{circular inheritance between 'Y<dim>' and 'Y<dim>'}} }; typedef X<3> X3; -X3::Y<>::iterator it; // expected-note {{requested here}} +X3::Y<>::iterator it; // expected-error {{no type named 'iterator' in 'PR11421::X<3>::Y<3>'}} +} + +namespace rdar12629723 { + template<class T> + struct X { + struct C : public C { }; // expected-error{{circular inheritance between 'rdar12629723::X::C' and 'rdar12629723::X::C'}} + + struct B; + + struct A : public B { // expected-note{{'rdar12629723::X::A' declared here}} + virtual void foo() { } + }; + struct B; + }; + + template<class T> + struct X<T>::B : public A { // expected-error{{circular inheritance between 'rdar12629723::X::A' and 'rdar12629723::X::B'}} + virtual void foo() { } + }; } |