blob: 9fba1bcafac3bd9efbf11dac2e795de94525b41a [file] [log] [blame]
// Build don't link:
// Origin: Mark Mitchell <mark@codesourcery.com>
template <class T>
struct S
{
template <class U>
friend S<U>; // ERROR - friend must use tag
};
template struct S<int>;