[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / PCH / cxx-invalid-destructor.h
blob59095a37c203ef5c12db2b7ae9aa4630c8ab5e75
1 struct Base {
2 ~Base();
3 };
5 struct Foo : public Base {
6 ~Base();
7 };