mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
11 lines
259 B
Kotlin
Vendored
11 lines
259 B
Kotlin
Vendored
// JVM_ANNOTATIONS
|
|
package test
|
|
|
|
import kotlin.annotations.jvm.*
|
|
|
|
public interface LoadIterableWithConflict<T> {
|
|
@ReadOnly @Mutable
|
|
public fun getIterable(): MutableIterable<T>?
|
|
public fun setIterable(@ReadOnly @Mutable p0: MutableIterable<T>?)
|
|
}
|