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.

Test2CP.java 290B

1234567891011121314151617181920
  1. package circle;
  2. public class Test2CP {
  3. public static void main(String[] args) {
  4. new Base();
  5. }
  6. }
  7. class Base implements Type.Reflexive {
  8. public interface I {}
  9. }
  10. class Type {
  11. public interface Reflexive {
  12. }
  13. public class Concrete implements Base.I {
  14. }
  15. }