Sign in
llvm
/
llvm-project
/
1e8286467036d8ef1a972de723f805a4981b2692
/
.
/
clang
/
test
/
PCH
/
cxx-invalid-destructor.h
blob: 59095a37c203ef5c12db2b7ae9aa4630c8ab5e75 [
file
] [
log
] [
blame
]
struct
Base
{
~
Base
();
};
struct
Foo
:
public
Base
{
~
Base
();
};