llvm/clang/test/PCH/cxx-invalid-destructor.h

struct Base {
  ~Base();
};

struct Foo : public Base {
  ~Base();
};