(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
explicit-instantiation5.C
// PR c++/108496

struct S { long a, b, c; } s;

template <int, typename>
S foo (S);

template <>
S
foo <0, long> (S)
{
  return s;
}

template S foo <0, long> (S);