blob: 2b0b0b95a83b9dcd02fc8eddfea0240818d95d16 [file] [log] [blame]
// PR c++/45822
struct A
{
A(int);
};
struct B
{
B(A = 0);
};
struct C
{
B b;
};
C c;