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
}