blob: 8b5c5f8476873a46d0ebfb015f4dc82671c09b8b [file] [log] [blame]
// PR c++/31337
// { dg-options "" }
struct A
{
int i[0];
A();
A(const A&);
~A();
};
void foo()
{
A a = ({ A(); });
}