mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
13 lines
177 B
Kotlin
Vendored
13 lines
177 B
Kotlin
Vendored
import kotlin.reflect.KProperty
|
|
|
|
class Delegate {
|
|
operator fun getValue(t: Any?, p: KProperty<*>): Int = 3
|
|
}
|
|
|
|
|
|
val prop: Int by Delegate()
|
|
|
|
val x = prop
|
|
|
|
// expected: x: 3
|