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.

Second.java 214B

12345678910111213
  1. class C implements II {}
  2. class D {
  3. public static void m() {
  4. C c = new C();
  5. E1 e1 = new E1();
  6. E2 e2 = new E2();
  7. c.foo(e1,e2.getClass());
  8. }
  9. }
  10. class E1 implements I1 {}
  11. class E2 implements I2 {}