(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
lto/
20101009-1_0.C
// { dg-lto-do link }

template < typename > struct X
{
  template < typename > static int test ();
  static const int i = sizeof (test < int >());
};

template struct X < int >;

int main()
{
  return 0;
}