1 2 3 4 5 6 7 8 9 10 11 12
// PR c++/87506 // { dg-do compile { target c++11 } } struct A {}; struct B { constexpr B (const A) {} }; struct C : B { using B::B; }; void foo () { C c (A{}); }