Files
kotlin-fork/kotlin-native/backend.native/tests/objcexport/funInterfaces.kt
T

16 lines
245 B
Kotlin

package funinterfaces
fun interface FunInterface {
fun run(): Int
}
fun getObject(): FunInterface {
return object : FunInterface {
override fun run() = 1
}
}
fun getLambda(): FunInterface {
return FunInterface { 2 }
}