blob: 2ff0c70a3c94dc91a545dafcb9052ecc18ca670a [file]
// WITH_KOTLIN_JVM_ANNOTATIONS
// TARGET_BACKEND: JVM
package test
import kotlin.annotations.jvm.*
public interface LoadIterableWithNullability<T> {
@Mutable
public fun getIterable(): MutableIterable<T>
public fun setIterable(@Mutable p0: MutableIterable<T>)
@ReadOnly
public fun getReadOnlyIterable(): Iterable<T>
public fun setReadOnlyIterable(@ReadOnly p0: Iterable<T>)
}