package test

public interface TypeParamOfFun {

    public interface Sub : test.TypeParamOfFun.Super {
        public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
        public abstract override /*1*/ fun </*0*/ E : kotlin.Any!> foo(): E
    }

    public interface Super {
        public abstract fun dummy(): kotlin.Unit
        @org.jetbrains.annotations.NotNull public abstract fun </*0*/ T : kotlin.Any!> foo(): T
    }
}
