Files
kotlin-fork/native/native.tests/testData/framework/objcexport/funInterfaces.kt
T
2024-02-05 16:06:34 +00:00

16 lines
245 B
Kotlin
Vendored

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