(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.pt/
memtemp32.C
// { dg-do link  }
// GROUPS passed templates membertemplates
extern "C" int printf(const char*, ...);

struct S
{
  template <class U>
  void g(U u)
  { i = 3; }

  int i;
};

int main()
{
  S s;
  s.g(3);
}