------- Additional Comments From reichelt at gcc dot gnu dot org  2004-11-12 
10:22 -------
Reduced testcase:

=====================================
struct A
{
    static void foo(A);
};

struct B
{
    friend void foo(B);
};

template<typename T> struct C : T
{
    C() { foo(T()); }
};

C<A> c;
=====================================


-- 


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

Reply via email to