Sign in
llvm
/
llvm-project
/
51a86e75ddf3eac3057c901bbe5e750dea62c7c1
/
.
/
clang
/
test
/
Modules
/
Inputs
/
glob-delete-with-virtual-dtor
/
glob-delete-with-virtual-dtor.h
blob: 405f955f4d50e4f14b34f3231a8a5ed594ece688 [
file
] [
log
] [
blame
]
class
H
{
void
operator
delete
(
void
*);
public
:
virtual
~
H
();
};
H
::~
H
()
{
}
class
S
:
public
H
{
void
operator
delete
(
void
*);
public
:
virtual
~
S
();
};
S
::~
S
()
{
}
void
in_h_tests
()
{
H
*
h
=
new
H
();
::
delete
h
;
}