निम्न कोड काफी तुच्छ है और मुझे उम्मीद थी कि इसे ठीक संकलन करना चाहिए।
struct A
{
struct B
{
int i = 0;
};
B b;
A(const B& _b = B())
: b(_b)
{}
};
मैंने इस कोड को g ++ संस्करण 4.7.2, 4.8.1, clang ++ 3.2 और 3.3 के साथ परीक्षण किया है। तथ्य यह है कि इस कोड पर जी ++ 4.7.2 segfaults ( http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57770 ) के अलावा, अन्य परीक्षण किए गए कंपाइलर त्रुटि संदेश देते हैं जो अधिक व्याख्या नहीं करते हैं।
जी ++ 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())
^
क्लेंग ++ 3.2 और 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())
^
इस कोड को बनाना संभव है और ऐसा लगता है कि इससे कोई फर्क नहीं पड़ना चाहिए। दो विकल्प हैं:
struct B
{
int i = 0;
B(){} // using B()=default; works only for clang++
};
या
struct B
{
int i;
B() : i(0) {} // classic c++98 initialization
};
क्या यह कोड वास्तव में गलत है या संकलक गलत हैं?
internal compiler error: Segmentation fault
इस कोड को कहता है ...