blob: 2751da3b5cf57a8f97d0a97e9d0e3d6cbcacedc1 [file] [log] [blame]
// PR c++/79796
// { dg-do compile { target c++11 } }
struct A
{
A* p = this;
};
void foo()
{
A a;
a = A({});
}