xref: /llvm-project/clang/test/PCH/cxx-invalid-destructor.h (revision eed0af6179ca4fe9e60121e0829ed8d3849b1ce5)
1 struct Base {
2   ~Base();
3 };
4 
5 struct Foo : public Base {
6   ~Base();
7 };
8