Re: ICE with nontype template parameter
On Wed, Mar 10, 2010 at 07:04:20PM +0100, Roger Ferrer Ibáñez wrote: > Is this a known bug or I should fill a PR? I see that you have just filed a PR for this at http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43327 Thanks. Dodji
ICE with nontype template parameter
Hi, this code --- template struct A { template struct B; template struct B<_N, _T::m> { static void f(); }; }; struct C { static const int m = 4; }; void m() { A::B<1, 4>::f(); } -- causes the following ICE as of 4.2 [g++ 4.4] test.cc: