(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.pt/
friend25.C
// { dg-do assemble  }

template <class T> struct A;

struct B
{
  template <class U>
  friend class A<U>;  // { dg-error "" } does not specialize any args
};

struct C
{
  template <class U>
  friend class A<U*>; // { dg-error "" } partial specialization
};