This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/54798] internal compiler error: Segmentation fault


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54798

Daniel KrÃgler <daniel.kruegler at googlemail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |daniel.kruegler at
                   |                            |googlemail dot com

--- Comment #3 from Daniel KrÃgler <daniel.kruegler at googlemail dot com> 2012-10-03 21:20:01 UTC ---
This happens also with gcc 4.8 HEAD. Further simplifications and removal of
library dependencies:

//-------
void use(int){}

template <typename U>
class C
{
public:
  void f()
  {
    [&]()
    {
      use(_member);
    }();
  }
private:
  int _member;
};
//-------

After this reduction it looks like a dup of bug 53921 to me.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]