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.

ImportInnerFromInterfaceImplementor.java 336B

1234567891011121314151617
  1. package pack;
  2. import pack.C.*;
  3. import java.io.Serializable;
  4. //import org.aspectj.testing.Tester;
  5. //public class ImportInnerFromInterfaceImplementor {
  6. // public static void main(String[] args) {
  7. // C c = new C();
  8. // Tester.check(c instanceof Serializable, "c: " + c);
  9. // }
  10. //}
  11. class C implements Serializable {}