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