Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
Wdtor1.C
blob: e376017deb339ff21a9db0575ef4af4738f6c8b4 [
file
] [
log
] [
blame
]
// PR c++/62232
// { dg-do compile { target c++11 } }
// { dg-options "-Wnon-virtual-dtor" }
class
base
{
protected
:
~
base
()
{}
virtual
void
foo
(){};
};
class
derive
final
:
public
base
{
};