[Bug c++/51747] [DR 1467] [C++11] cannot call defaulted copy constructor using list-initialization
ville.voutilainen at gmail dot com
gcc-bugzilla@gcc.gnu.org
Sun Jan 25 18:35:00 GMT 2015
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51747
--- Comment #10 from Ville Voutilainen <ville.voutilainen at gmail dot com> ---
This code fails with the current trunk:
struct B {};
struct D : B {D(B b) : B{b} {}};
base-aggr-init.cpp: In constructor ‘D::D(B)’:
base-aggr-init.cpp:2:27: error: too many initializers for ‘B’
struct D : B {D(B b) : B{b} {}};
^
As far as I can see, the function process_init_constructor_record in typeck2.c
emits the diagnostic.
More information about the Gcc-bugs
mailing list