code: > class A { > void test(int) {} > } > > class B : A { > void test() { > super.test(1); // compiles > test(10); // error > } > } Error: function B.test () is not callable using argument types (int)