[Bug c++/37737] ICE on variadic template function
--- Comment #2 from cfairles at gcc dot gnu dot org 2008-10-05 12:09 --- I believe these are both ice-on-invalid code. -- cfairles at gcc dot gnu dot org changed: What|Removed |Added
[Bug c++/37737] ICE on variadic template function
--- Comment #1 from cfairles at gcc dot gnu dot org 2008-10-05 12:02 --- This variant also ice's in same place but issues error first: ice2.cpp: template void f() { f(); } template<> void f() { } int main() { f(); } ice2.cpp:8: error: template-id f<> for void f() does not ma