This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/21681] [4.0/4.1 Regression] Internal Compiler Error


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-05-21 14:49 -------
Confirmed, reduced testcase:
template <class Signature> struct dispatch { typedef int result; };
struct copy_
{
    template <class Range1>
    typename dispatch<copy_()>::result
    operator()(Range1 const& src) const
    {
        return dispatch<copy_(Range1)>::a::execute(src);
    }
};

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
           Keywords|                            |ice-on-valid-code
   Last reconfirmed|0000-00-00 00:00:00         |2005-05-21 14:49:05
               date|                            |
   Target Milestone|---                         |4.0.1


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21681


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]