blob: a8fc864b2ea058901d4d0174fc9b07a566b43d02 [file]
// WITH_STDLIB
import kotlin.test.*
import kotlin.properties.Delegates
val sb = StringBuilder()
class User {
var name: String by Delegates.observable("<no name>") {
prop, old, new ->
sb.appendLine("$old -> $new")
}
}
fun box(): String {
val user = User()
user.name = "first"
user.name = "second"
assertEquals("""
<no name> -> first
first -> second
""".trimIndent(), sb.toString())
return "OK"
}