Files
kotlin-fork/compiler/testData/codegen/box/localClasses/kt2700.kt
T
2018-06-28 12:26:41 +02:00

18 lines
213 B
Kotlin
Vendored

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