You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

B.java 120B

1234567
  1. public class B {
  2. T t = new T();
  3. public void method() {
  4. System.out.println("B.method() running");
  5. t.m2();
  6. }
  7. }