10 lines
144 B
Kotlin
Vendored
10 lines
144 B
Kotlin
Vendored
import kotlin.reflect.KProperty
|
|
|
|
class Delegate {
|
|
fun getValue(_this: Nothing?, p: KProperty<*>): Int = 0
|
|
}
|
|
|
|
val a = Delegate()
|
|
|
|
val b by a
|