mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
10 lines
262 B
Kotlin
10 lines
262 B
Kotlin
package test
|
|
|
|
import org.jetbrains.annotations.*
|
|
|
|
public trait LoadIterableWithConflict<T> : java.lang.Object {
|
|
[ReadOnly] [Mutable]
|
|
public fun getIterable(): MutableIterable<T>?
|
|
public fun setIterable([ReadOnly] [Mutable] p0: MutableIterable<T>?)
|
|
}
|