Searched defs:ClassWithDestructor (Results 1 – 3 of 3) sorted by relevance
68 class ClassWithDestructor { class70 ClassWithDestructor() { in ClassWithDestructor() function in ClassWithDestructor
220 class ClassWithDestructor { class 224 ClassWithDestructor(AddressVector<ClassWithDestructor> &v) : v(v) { in ClassWithDestructor() function in address_vector_tests::ClassWithDestructor 228 ClassWithDestructor(ClassWithDestructor &&c) : v(c.v) { push(); } in ClassWithDestructor() function in address_vector_tests::ClassWithDestructor 229 ClassWithDestructor(const ClassWithDestructor &c) : v(c.v) { push(); } in ClassWithDestructor() function in address_vector_tests::ClassWithDestructor [all...]
190 struct ClassWithDestructor { // expected-note {{target destructor is declared here}} struct 193 return this->~ClassWithDestructor(); // expected-error {{cannot perform a tail call to a destructor}} in TestExplicitDestructorCall() argument