The following valid code snippet is rejected since GCC 4.3.0:

==========================================
struct A {};

template<int> struct Traits
{
  typedef void X;
};

template<> struct Traits<0>
{
  typedef A X;
};

template<int N> struct B
{
  typedef typename Traits<N>::X Y;

  void foo(Y y)
  {
    y.Y::A::~A();
  }
};
==========================================

bug.cc: In member function 'void B<N>::foo(typename Traits<N>::X)':
bug.cc:19: error: 'void' is not a class type


-- 
           Summary: [4.3/4.4 regression] Trouble calling qualified member
                    function
           Product: gcc
           Version: 4.4.0
            Status: UNCONFIRMED
          Keywords: rejects-valid
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: reichelt at gcc dot gnu dot org


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

Reply via email to