package test

public interface InheritNullability {

    public interface Sub : test.InheritNullability.Super {
        public abstract override /*1*/ fun </*0*/ B : kotlin.CharSequence!> foo(/*0*/ p0: B!): kotlin.Unit
    }

    public interface Super {
        public abstract fun </*0*/ A : kotlin.CharSequence!> foo(/*0*/ p0: A!): kotlin.Unit
    }
}
