Files
kotlin-fork/compiler/testData/codegen/script/classLiteralInsideFunction.kts
T
Ilya Chernikov 5824b9c59c K2 Scripting: add Fir script codegen tests
27 failing tests are muted
2023-07-05 19:46:03 +00:00

21 lines
326 B
Kotlin
Vendored

// IGNORE_BACKEND_K2: JVM_IR
package script.long.name.inside.packag
interface I {
fun g(): I
}
fun f(): I {
return object : I {
override fun g() = object : I {
override fun g(): I = this
override fun toString() = "OK"
}
}
}
val rv = f().g().g().g()
// expected: rv: OK