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.

Test1CF.java 273B

1234567891011121314151617
  1. package circle;
  2. public class Test1CF {}
  3. class Base {
  4. public interface I extends IBottom {} //CE cyclic inheritance
  5. }
  6. class Type {
  7. public interface Reflexive {
  8. }
  9. }
  10. interface DerivedI extends Base.I, Type.Reflexive {}
  11. interface IBottom extends DerivedI {}