public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/64382] New: ICE due to use of `this` inside a lambda that captures everything by ref inside a member function of a class template
@ 2014-12-23 12:04 lh_mouse at 126 dot com
  2015-01-01 16:17 ` [Bug c++/64382] " ville.voutilainen at gmail dot com
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: lh_mouse at 126 dot com @ 2014-12-23 12:04 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64382

            Bug ID: 64382
           Summary: ICE due to use of `this` inside a lambda that captures
                    everything by ref inside a member function of a class
                    template
           Product: gcc
           Version: 5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: lh_mouse at 126 dot com

template<typename T>
struct my_queue {
    void push(T){
    }
    void ice(){
        trav([&](auto &&v){ push(v); });
    }
    template<typename F>
    void trav(F &&f){
        f(T());
    }
};
template class my_queue<int>;

---------------------------------------------------------

E:\Desktop>g++ -c test.cpp -std=c++14
test.cpp: In lambda function:
test.cpp:6:29: internal compiler error: Segmentation fault
   trav([&](auto &&v){ push(v); });
                             ^
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://sourceforge.net/projects/mingw-w64> for instructions.


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-04-13 23:07 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-12-23 12:04 [Bug c++/64382] New: ICE due to use of `this` inside a lambda that captures everything by ref inside a member function of a class template lh_mouse at 126 dot com
2015-01-01 16:17 ` [Bug c++/64382] " ville.voutilainen at gmail dot com
2015-01-01 16:18 ` ville.voutilainen at gmail dot com
2015-03-09 23:47 ` abutcher at gcc dot gnu.org
2015-03-09 23:58 ` abutcher at gcc dot gnu.org
2015-04-13 23:07 ` abutcher at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).