blob: f93e73bc396ff24f29cc8db61fe3670b1d488c01 [file] [log] [blame]
// Build don't link:
template <class T> struct A;
struct B
{
template <class U>
friend class A<U>; // ERROR - does not specialize any args
};
struct C
{
template <class U>
friend class A<U*>; // ERROR - partial specialization
};