<@U32TSCHGB> I wasn't able to reproduce this on 1....
# announcements
k
@david.bilik I wasn't able to reproduce this on 1.1.2-5 with this code:
Copy code
fun main(args: Array<String>) {
    val test = Test()

    val runnable = Runnable { test.value = 5}
    runnable.run()
}

class Test {
    var value: Int = 3
        set(value) {
            print(value)
        }
}