v811_spc009/external/llvm-project/clang/test/PCH/cxx-invalid-destructor.h

8 lines
70 B

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