8 lines
223 B
Plaintext
Vendored
8 lines
223 B
Plaintext
Vendored
import kotlin.support.AbstractIterator
|
|
|
|
fun main() {
|
|
val randomFunction: (x: kotlin.support.AbstractIterator<Int>, y: kotlin.String) -> kotlin.String = { x: AbstractIterator<Int>, str: String -> str}
|
|
}
|
|
|
|
// WITH_RUNTIME
|