class B: A { public int foo () { return 1;} } int main (){ B b = new B(); printf("foo() = %d\n", b.foo()); return 0; }