teak-llvm/clang/test/SemaTemplate/destructor-template.cpp
Hubert Tong 3cede51322 Fix PR 33189: Clang assertion on template destructor declaration
Summary:
This patch aims to fix the bug reported at
https://bugs.llvm.org/show_bug.cgi?id=33189. Clang hits an assertion
when a template destructor declaration is present. This is caused by
later processing that does not expect to encounter a template when
looking at a destructor. The resolution is to treat the destructor as
being not declared when later processing is interested in the properties
of the destructor of a class.

Reviewers: rcraik, hubert.reinterpretcast, aaron.ballman, rsmith

Reviewed By: rsmith

Subscribers: rsmith, cfe-commits

Differential Revision: https://reviews.llvm.org/D33833

Patch by Kuang He!

llvm-svn: 306905
2017-06-30 22:43:54 +00:00

95 lines
1.7 KiB
C++

// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
template<typename A> class s0 {
template<typename B> class s1 : public s0<A> {
~s1() {}
s0<A> ms0;
};
};
struct Incomplete;
template<typename T>
void destroy_me(T me) {
me.~T();
}
template void destroy_me(Incomplete*);
namespace PR6152 {
template<typename T> struct X { void f(); };
template<typename T> struct Y { };
template<typename T>
void X<T>::f() {
Y<T> *y;
y->template Y<T>::~Y();
y->template Y<T>::~Y<T>();
y->~Y();
}
template struct X<int>;
}
namespace cvquals {
template<typename T>
void f(int *ptr) {
ptr->~T();
}
template void f<const volatile int>(int *);
}
namespace PR7239 {
template<class E> class A { };
class B {
void f() {
A<int>* x;
x->A<int>::~A<int>();
}
};
}
namespace PR7904 {
struct Foo {};
template <class T>
Foo::~Foo() { // expected-error{{destructor cannot be declared as a template}}
T t;
T &pT = t;
pT;
}
Foo f;
}
namespace rdar13140795 {
template <class T> class shared_ptr {};
template <typename T> struct Marshal {
static int gc();
};
template <typename T> int Marshal<T>::gc() {
shared_ptr<T> *x;
x->template shared_ptr<T>::~shared_ptr();
return 0;
}
void test() {
Marshal<int>::gc();
}
}
namespace PR16852 {
template<typename T> struct S { int a; T x; };
template<typename T> decltype(S<T>().~S()) f(); // expected-note {{candidate template ignored: couldn't infer template argument 'T'}}
void g() { f(); } // expected-error {{no matching function for call to 'f'}}
}
class PR33189
{
template <class T>
~PR33189() { } // expected-error{{destructor cannot be declared as a template}}
};