Home
last modified time | relevance | path

Searched defs:ClassWithDestructor (Results 1 – 3 of 3) sorted by relevance

/llvm-project/compiler-rt/test/tsan/
H A Dexceptions.cpp68 class ClassWithDestructor { class
70 ClassWithDestructor() { in ClassWithDestructor() function in ClassWithDestructor
/llvm-project/clang/test/Analysis/
H A Dcopy-elision.cpp220 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...]
/llvm-project/clang/test/SemaCXX/
H A Dattr-musttail.cpp190 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