------- Additional Comments From pinskia at gcc dot gnu dot org  2005-01-07 
00:54 -------
I decided to take a different method to reducing this testcase by using the old 
style copy and paste 
method which is better sometimes at reducing testcases (in fact much better and 
faster with C++ 
code):
struct t
{
  void f() const;
};
template <typename _Tp>
struct A
{
 static t const&  c;
};
template <typename _Tp>
void g(void)
{
  A<_Tp>::c.f();
}
void h(void)
{
  g<int>();
}


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |critical
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
           Priority|P2                          |P1
   Last reconfirmed|0000-00-00 00:00:00         |2005-01-07 00:54:46
               date|                            |


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

Reply via email to