1 2 3 4 5 6 7 8 9 10 11 12
struct A { void (*f)(void); }; template< typename R > struct B : public A { void g() { A::f(); } }; template class B<bool>;