Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
dtor12.C
blob: 9890e6392fc4a28e56dc7b9ecf5ce92ec59fa726 [
file
] [
log
] [
blame
]
// { dg-do run }
// Test that we don't complain about calling a destructor on a const object.
#include
<new>
struct
A
{
~
A
()
{}
};
const
A a
=
{};
int
main
()
{
a
.~
A
();
a
.
A
::~
A
();
// { dg-bogus "" } const violation
}