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++/13592] [3.4 Regression] C++ parser regression


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-01-07 01:22 -------
Confirmed, reduced source:
struct rot_mx
{
  int const& operator()(int r, int c) const;
  int& operator()(int r, int c);
};

struct rt_mx
{
    template <typename GridTupleType>
     GridTupleType refine_gridding(GridTupleType const& grid) const;
    rot_mx r_;
};

template <typename GridTupleType>
GridTupleType
rt_mx::refine_gridding(GridTupleType const& grid) const
{
  GridTupleType result;
  r_(0, 0);
  return result;
}

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |critical
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
  GCC build triplet|g++ (GCC) 3.4.0 20031230    |
                   |(experimental)              |
   GCC host triplet|i686-gnu-linux              |
 GCC target triplet|i686-gnu-linux              |
           Keywords|                            |rejects-valid
   Last reconfirmed|0000-00-00 00:00:00         |2004-01-07 01:22:21
               date|                            |
            Summary|C++ parser regression       |[3.4 Regression] C++ parser
                   |                            |regression
   Target Milestone|---                         |3.4.0


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


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