rt_gccstream/gcc/testsuite/g++.old-deja/g++.other/dtor12.C

17 lines
228 B
C

// { 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
}