PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / static8.C
blobf8229fd827e4684bc7c519face82b7994d34f417
1 // PR c++/17585
3 template <void (*p)(void)> struct S03 {};
4 class C03 {
5 public:
6   static void f(void) {}
7   void g(void) { S03<&f> s03; }
8 };