------- Additional Comments From pinskia at gcc dot gnu dot org  2005-02-14 
15:41 -------
This comes down to the following reduced testcase:
struct Logging {
  friend class Environment;
};
template<class T> struct ArrayCollection
{
  int insert(const T& theObj)
  {
    Environment::ReportError();
  }
};


This is invalid as Environment::ReportError has to be looked up at parse time 
and not at instainated 
time.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |INVALID


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

Reply via email to