Files
kotlin-fork/compiler/testData/codegen/script/topLevelLocalDelegatedProperty.kts
T
Ilya Chernikov 5824b9c59c K2 Scripting: add Fir script codegen tests
27 failing tests are muted
2023-07-05 19:46:03 +00:00

15 lines
207 B
Kotlin
Vendored

// IGNORE_BACKEND_K2: JVM_IR
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