PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / explicit-instantiation.C
blob67e44c49f024c840034b23eb9698ff07853b61b3
1 // Contributed by Gabriel Dos Reis <gdr@codesourcery.com>
2 // Origin: Jens.Maurer@gmx.net
3 // { dg-do compile }
5 // Fixed: PR 3381
7 namespace N
9   template<class T>
10   class A { };
13 template class ::N::A<int>;