[Bug c++/60920] Crash on double template header due to default template parameter

2014-04-22 Thread a71104 at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60920 --- Comment #2 from a71104 at gmail dot com --- Additional: I'm using the `-Wall` and `--std=c++11` compiler options.

[Bug c++/60920] Crash on double template header due to default template parameter

2014-04-22 Thread a71104 at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60920 --- Comment #1 from a71104 at gmail dot com --- Sorry, I formatted the code like I was posting to GitHub in Markdown. :P

[Bug c++/60920] New: Crash on double template header due to default template parameter

2014-04-22 Thread a71104 at gmail dot com
Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: a71104 at gmail dot com ```C++ template struct x {}; template template struct x {}; int main() { x<10, double> x1; return 0; } ``` It doesn't crash if I remove

[Bug c++/58077] New: Crash on matching template with bool type instead

2013-08-04 Thread a71104 at gmail dot com
: c++ Assignee: unassigned at gcc dot gnu.org Reporter: a71104 at gmail dot com #include using namespace std; template> struct Foo { static void Bar(basic_istream<_CharType, _Traits>&); }; template struct Foo { static void Bar(basic_istream<_CharTyp

[Bug c++/47212] New: [C++0x] crash on lambda returning lambda

2011-01-07 Thread a71104 at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47212 Summary: [C++0x] crash on lambda returning lambda Product: gcc Version: 4.5.0 Status: UNCONFIRMED Severity: major Priority: P3 Component: c++ AssignedTo: unassig...@g