Le code suivant est assez trivial et je m'attendais à ce qu'il compile bien.
struct A
{
struct B
{
int i = 0;
};
B b;
A(const B& _b = B())
: b(_b)
{}
};
J'ai testé ce code avec g++ version 4.7.2, 4.8.1, clang++ 3.2 et 3.3. Mis à part le fait que g++ 4.7.2 présente des erreurs sur ce code ( http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57770 ), les autres compilateurs testés donnent des messages d'erreur qui n'expliquent pas grand-chose.
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 et 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())
^
Rendre ce code compilable est possible et semble ne faire aucune différence. Il y a deux options :
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
};
Ce code est-il vraiment incorrect ou les compilateurs se trompent-ils ?