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

14 lines
189 B
Kotlin
Vendored

package test
interface Z {
fun a() : String
}
inline fun test(crossinline z: () -> String) =
object : Z {
val p = z()
override fun a() = p
}