(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
explicit-instantiation.C
// Contributed by Gabriel Dos Reis <gdr@codesourcery.com>
// Origin: Jens.Maurer@gmx.net
// { dg-do compile }

// Fixed: PR 3381

namespace N
{
  template<class T>
  class A { };
}

template class ::N::A<int>;