Files
kotlin-fork/compiler/testData/ir/irText/expressions/objectByNameInsideObject.kt
T
2021-06-17 13:24:12 +03:00

7 lines
134 B
Kotlin
Vendored

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