Searched defs:ClassWithDestructor (Results 1 – 3 of 3) sorted by relevance
68 class ClassWithDestructor { class70 ClassWithDestructor() { in ClassWithDestructor() function in ClassWithDestructor
219 class ClassWithDestructor { class223 ClassWithDestructor(AddressVector<ClassWithDestructor> &v) : v(v) { in ClassWithDestructor() function in address_vector_tests::ClassWithDestructor227 ClassWithDestructor(ClassWithDestructor &&c) : v(c.v) { push(); } in ClassWithDestructor() function in address_vector_tests::ClassWithDestructor228 ClassWithDestructor(const ClassWithDestructor &c) : v(c.v) { push(); } in ClassWithDestructor() function in address_vector_tests::ClassWithDestructor
190 struct ClassWithDestructor { // expected-note {{target destructor is declared here}} struct193 …return this->~ClassWithDestructor(); // expected-error {{cannot perform a tail call to a destructo… in TestExplicitDestructorCall() argument