1 // PR c++/51747
2 // { dg-do compile { target c++11 } }
3 
4 struct B {};
DD5 struct D : B {D(B b) : B{b} {}};
6