public class SubC extends SupC {
	void f() {System.out.println("In SubC.f()");}
	void f(double d) {System.out.println("In SubC.f(double)");}
}

