blob: 6dfb87e177ca54277123007e9f55aa27ed49b80e [file] [log] [blame]
struct A {};
struct B : public A
{
static void foo ();
};
template <typename T> struct C
{
C() : f(B::foo) {}
void (*f)();
};
C<int> c;