This is an unofficial snapshot of the ISO/IEC JTC1 SC22 WG21 Core Issues List revision 115e. See http://www.open-std.org/jtc1/sc22/wg21/ for the official list.
2024-11-11
[Adopted at the October, 2015 meeting as P0136R1.]
The creation of inheriting constructors does not, but should, consider the default arguments of constructors in the inheriting class. For example,
struct A { A(int, int); }; struct B : A { using A::A; B(int, int, int = 0); // does not suppress creation of B(int, int) from A(int, int) };