hi i have a question about delegation properties n...
# announcements
s
hi i have a question about delegation properties not sure if it is a issue in kotlin.
Copy code
object DoItLater {

    @JvmStatic
    fun main(args: Array<String>) {
        val hi = Test("hi")
        println(hi.other)
        println(hi.other)
        println(hi.other)
    }

    val Test.other by lazy {
        //not working
        this.someProperty.reversed()
        //not working
        it.someProperty.reversed()
    }

}

class Test(val someProperty: String)