5824b9c59c
27 failing tests are muted
15 lines
207 B
Kotlin
Vendored
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
|