[Bug c++/56176] New: internal compiler error with call to default constructor of inner struct having a std::function member attribute initialization
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56176 Bug #: 56176 Summary: internal compiler error with call to default constructor of inner struct having a std::function member attribute initialization Classification: Unclas
[Bug c++/56176] internal compiler error with call to default constructor of inner struct having a std::function member attribute initialization
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56176 --- Comment #1 from Benoit Bayol 2013-02-01 16:05:31 UTC --- I have just noticed that the example code can be simpler : struct B { typedef struct { int a = 0; } A; B(A a = A()){} };