mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
11 lines
164 B
Kotlin
Vendored
11 lines
164 B
Kotlin
Vendored
package test
|
|
|
|
interface Z {
|
|
fun a(): String
|
|
}
|
|
|
|
inline fun test(crossinline z: () -> String) =
|
|
object : Z {
|
|
override fun a() = z()
|
|
}
|