Files
kotlin-fork/idea/testData/slicer/inflow/delegateGetter.kt
T
2017-06-09 17:19:20 +03:00

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
}