PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / explicit8.C
blob4b92dbe39e48db19e1937b54202ed7146257771c
1 namespace N {
2   template <typename T>
3   struct S {
4     void f() {}
5   };
6   namespace I {
7     template void S<double>::f(); // { dg-error "namespace" }
8   }
11 namespace K {
12   template void N::S<int>::f(); // { dg-error "namespace" }