package test public trait LoadIterableWithPropagation : java.lang.Object { public trait LoadIterable : java.lang.Object { org.jetbrains.annotations.Mutable() public abstract fun getIterable(): kotlin.MutableIterable? org.jetbrains.annotations.ReadOnly() public abstract fun getReadOnlyIterable(): kotlin.Iterable? public abstract fun setIterable(/*0*/ org.jetbrains.annotations.Mutable() p0: kotlin.MutableIterable?): kotlin.Unit public abstract fun setReadOnlyIterable(/*0*/ org.jetbrains.annotations.ReadOnly() p0: kotlin.Iterable?): kotlin.Unit } public open class LoadIterableImpl : test.LoadIterableWithPropagation.LoadIterable { public constructor LoadIterableImpl() public open override /*1*/ fun getIterable(): kotlin.MutableIterable? public open override /*1*/ fun getReadOnlyIterable(): kotlin.Iterable? public open override /*1*/ fun setIterable(/*0*/ p0: kotlin.MutableIterable?): kotlin.Unit public open override /*1*/ fun setReadOnlyIterable(/*0*/ p0: kotlin.Iterable?): kotlin.Unit } }