From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jason Merrill To: mmitchell@usa.net Cc: Ross Alexander , egcs@cygnus.com, law@cygnus.com Subject: Re: Error in 971122 i686-pc-linux-gnu Date: Fri, 28 Nov 1997 01:30:00 -0000 Message-id: References: <199711280306.QAA11798@stimpy.math.auckland.ac.nz> <199711272141.VAA00141@quickstep.stanford.edu> X-SW-Source: 1997-11/msg00915.html >>>>> Mark Mitchell writes: > I wonder if the implicit typename stuff should be disabled for the > release. There seem to be a lot of internal errors being reported in > cases where the users should have used 'typename'. Ross> ---------------------------------------------------------------------- Ross> template int foo (X a) { X::A b; // = a; } Ross> ---------------------------------------------------------------------- This crash is caused by foo, not X::A. You can't use a template-id when defining a primary template. Jason