Files
kotlin/compiler/testData/codegen/boxInline/enclosingInfo/objectInInlineFun.2.kt
2016-01-12 15:51:57 +03:00

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()
}