package test import org.jetbrains.annotations.* public trait LoadIterableWithNullability { Mutable public fun getIterable(): MutableIterable public fun setIterable([Mutable] p0: MutableIterable) ReadOnly public fun getReadOnlyIterable(): Iterable public fun setReadOnlyIterable([ReadOnly] p0: Iterable) }