1 // PR c++/55261 2 // { dg-do compile { target c++11 } } 3 4 struct A 5 { 6 }; 7 struct B : A 8 { 9 using A::A; 10 }; 11