El siguiente código es bastante trivial y esperaba que se compilara bien.
struct A
{
struct B
{
int i = 0;
};
B b;
A(const B& _b = B())
: b(_b)
{}
};
He probado este código con g ++ versión 4.7.2, 4.8.1, clang ++ 3.2 y 3.3. Aparte del hecho de que g ++ 4.7.2 segfaults en este código ( http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57770 ), los otros compiladores probados dan mensajes de error que no explican mucho.
g ++ 4.8.1:
test.cpp: In constructor ‘constexpr A::B::B()’:
test.cpp:3:12: error: constructor required before non-static data member for ‘A::B::i’ has been parsed
struct B
^
test.cpp: At global scope:
test.cpp:11:23: note: synthesized method ‘constexpr A::B::B()’ first required here
A(const B& _b = B())
^
clang ++ 3.2 y 3.3:
test.cpp:11:21: error: defaulted default constructor of 'B' cannot be used by non-static data member initializer which appears before end of class definition
A(const B& _b = B())
^
Hacer que este código sea compilable es posible y parece que no debería hacer ninguna diferencia. Hay dos opciones:
struct B
{
int i = 0;
B(){} // using B()=default; works only for clang++
};
o
struct B
{
int i;
B() : i(0) {} // classic c++98 initialization
};
¿Es este código realmente incorrecto o los compiladores están equivocados?
internal compiler error: Segmentation fault
a este código ...