ea7d535ae7
#KT-11994 In Progress
13 lines
185 B
Kotlin
Vendored
13 lines
185 B
Kotlin
Vendored
// FLOW: IN
|
|
|
|
import kotlin.reflect.KProperty
|
|
|
|
object D {
|
|
operator fun getValue(thisRef: Any?, property: KProperty<*>) = 1
|
|
}
|
|
|
|
val foo: Int by D
|
|
|
|
fun test() {
|
|
val <caret>x = foo
|
|
} |