Files
clang-p2996/clang/test/SemaTemplate/destructor-template.cpp
Roy Jacobson 21eb1af469 [Concepts] Implement overload resolution for destructors (P0848)
This patch implements a necessary part of P0848, the overload resolution for destructors.
It is now possible to overload destructors based on constraints, and the eligible destructor
will be selected at the end of the class.

The approach this patch takes is to perform the overload resolution in Sema::ActOnFields
and to mark the selected destructor using a new property in FunctionDeclBitfields.

CXXRecordDecl::getDestructor is then modified to use this property to return the correct
destructor.

This closes https://github.com/llvm/llvm-project/issues/45614.

Reviewed By: #clang-language-wg, erichkeane

Differential Revision: https://reviews.llvm.org/D126194
2022-06-19 00:30:37 +03:00

105 lines
1.9 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}}
};
namespace PR38671 {
struct S {
template <class>
~S(); // expected-error{{destructor cannot be declared as a template}}
};
struct T : S {
~T() = default;
};
} // namespace PR38671