package test

public interface InheritNullabilitySameGenericType {

    public interface Sub : test.InheritNullabilitySameGenericType.Super {
        public abstract override /*1*/ /*fake_override*/ fun dummy(): kotlin.Unit
        public abstract override /*1*/ fun foo(): kotlin.collections.MutableList<kotlin.String>
    }

    public interface Super {
        public abstract fun dummy(): kotlin.Unit
        public abstract fun foo(): kotlin.collections.MutableList<kotlin.String>
    }
}
