http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56464
Bug #: 56464 Summary: Crashes when using implicit this in a lambda capture in member initilizer Classification: Unclassified Product: gcc Version: 4.7.2 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ AssignedTo: unassig...@gcc.gnu.org ReportedBy: ogoff...@kde.org GCC segfault on this (valid) code: struct bug { bug*a = [&](){return this;}(); };