PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / field1.C
blobc61437b28d6dbbe4c70919e4a435278f845eba79
1 struct A {
2   void (*f)(void);
3 };
5 template< typename R >
6 struct B : public A {
7   void g()
8   {
9     A::f();
10   }
12 template class B<bool>;