Files
kotlin/compiler/testData/loadJava/compiledJavaCompareWithKotlin/library/LoadIterable.kt
2014-07-25 21:19:38 +04:00

7 lines
142 B
Kotlin

package test
public trait LoadIterable<T> {
public fun getIterable(): MutableIterable<T>?
public fun setIterable(p0: Iterable<T>?)
}