[Bug c++/85325] New: ICE on class template partial specialization for c++17

2018-04-10 Thread jpelletier at jumptrading dot com
Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: jpelletier at jumptrading dot com Target Milestone: --- Created attachment 43899 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=43899&action=edit sample code The attached code results in an ICE when c

[Bug c++/60432] New: Member pointer resolution within class definition causes segmentation fault

2014-03-05 Thread jpelletier at jumptrading dot com
: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: jpelletier at jumptrading dot com

[Bug c++/60432] Member pointer resolution within class definition causes segmentation fault

2014-03-05 Thread jpelletier at jumptrading dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60432 --- Comment #1 from jpelletier at jumptrading dot com --- Created attachment 32277 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=32277&action=edit full error output

[Bug c++/60432] Member pointer resolution within class definition causes segmentation fault

2014-03-05 Thread jpelletier at jumptrading dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60432 --- Comment #2 from jpelletier at jumptrading dot com --- The following code causes a segmentation fault: #include struct A { int a; static constexpr int A::*p = &A::a; }; %g++ -std=c++11 -c member.cc member.cc:6:35: internal compiler e

[Bug c++/60432] Member pointer resolution within class definition causes segmentation fault

2014-03-05 Thread jpelletier at jumptrading dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60432 --- Comment #3 from jpelletier at jumptrading dot com --- Created attachment 32278 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=32278&action=edit preprocessed file