blob: af0e3caf15c86921012aa60de76d0b49ad4dba1e [file] [log] [blame]
// Build don't link:
// Origin: Mark Mitchell <mark@codesourcery.com>
template <class T>
class C {
template <class U>
friend class ::C;
};
namespace N
{
template <class T>
class D {
template <class U>
friend class N::D;
};
};