您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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 {}