Files
kotlin-fork/compiler/testData/ir/irText/expressions/objectByNameInsideObject.kt
T
2021-05-14 16:20:18 +03:00

6 lines
117 B
Kotlin
Vendored

open class Base(val f1: () -> Any)
object Thing : Base({ Thing }) {
fun test1() = Thing
fun test2() = this
}