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.

Test2CF.java 236B

123456789101112131415
  1. package circle;
  2. public class Test2CF {}
  3. class Base implements Type.Reflexive { //CE cyclic inheritance
  4. public interface I {}
  5. }
  6. class Type extends Derived {
  7. public interface Reflexive {
  8. }
  9. }
  10. class Derived extends Base {}