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

15 lines
220 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
}
val prop: Int by Delegate()
val x = prop
// expected: x: 3