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.

Test1CP.java 259B

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