blob: c61437b28d6dbbe4c70919e4a435278f845eba79 [file] [log] [blame]
struct A {
void (*f)(void);
};
template< typename R >
struct B : public A {
void g()
{
A::f();
}
};
template class B<bool>;