Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
virtual2.C
blob: 83b7ed6beaead0b3781633627aef82c36e0794a7 [
file
] [
log
] [
blame
]
// PR c++/51137
struct
A
{};
template
<int>
struct
B
:
virtual
A
{
void
foo
()
{
(
new
A
(*
this
))->
A
::~
A
();
}
};