Files
kotlin-fork/compiler/testData/ir/sourceRanges/declarations/delegatedProperties.kt
T
2023-10-10 13:38:52 +00:00

15 lines
262 B
Kotlin
Vendored

// WITH_STDLIB
// ISSUE: KT-59864
import kotlin.properties.Delegates
class MyClass {
val lazyProp by lazy {
5
}
var observableProp: String by Delegates.observable("<none>") { prop, old, new ->
println("Was $old, now $new")
}
}