Yeah.. you need to use the base class name

Code:
void Derived::func(int a) {
    Base::func(a);
}