
/**
 * @author Neil Ongkingco
 *
 */
public class B {
    void f1() {
        System.out.println("b.f1");
    }
    void f2() {
        System.out.println("b.f2");
    }
    void f3() {
        System.out.println("b.f3");
    }
}
