(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.pt/
static7.C
// { dg-do assemble  }
// Origin: Mark Mitchell <mark@codesourcery.com>

template <class T>
struct S {
  S() {}

  static S s;
};

template <class T>
S<T> S<T>::s;

S<int> si;