(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.other/
comdat2-aux.cc
template <class T>
struct S {
  static int f ()
  {
    static int i;
    return ++i;
  }
  S () {};
  ~S () {};
};

typedef S<int> a;

int g ()
{
  return a::f();
}