mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
14 lines
238 B
Kotlin
Vendored
14 lines
238 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
import kotlin.reflect.KProperty
|
|
|
|
class Delegate(val x: Int) {
|
|
operator fun getValue(t: Any?, p: KProperty<*>): Int = x
|
|
}
|
|
|
|
class My {
|
|
val x: Int by Delegate(this.foo())
|
|
|
|
fun foo(): Int = x
|
|
}
|