Files
kotlin-fork/compiler/testData/codegen/box/localClasses/kt2700.kt
T
2020-04-09 15:22:55 +03:00

17 lines
187 B
Kotlin
Vendored

package a.b
interface Test {
fun invoke(): String {
return "OK"
}
}
private val a : Test = {
object : Test {
}
}()
fun box(): String {
return a.invoke();
}