Files
kotlin-fork/compiler/testData/codegen/script/localDelegatedProperty.kts
T
2023-12-26 10:18:19 +00:00

17 lines
258 B
Kotlin
Vendored

// JVM_ABI_K1_K2_DIFF: KT-63960, KT-63963
import kotlin.reflect.KProperty
class Delegate {
operator fun getValue(t: Any?, p: KProperty<*>): Int = 3
}
fun foo(): Int {
val prop: Int by Delegate()
return prop
}
val x = foo()
// expected: x: 3