Untitled
class Main {
public static void main(String[] args) {
testA();
}
static void testA() { testB(); }
static void testB() { System.out.println("TestB"); }
}INFO
class Main {
public static void main(String[] args) {
testA();
}
static void testA() { testB(); }
static void testB() { System.out.println("TestB"); }
}