Files
kotlin-fork/compiler/testData/codegen/box/localClasses/kt2700.kt
T
2019-11-19 11:00:09 +03:00

18 lines
217 B
Kotlin
Vendored

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