Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/delegateAccessors/varMissingGet.kt.after
T
2019-11-13 08:37:25 +09:00

14 lines
301 B
Plaintext
Vendored

// "Create member function 'F.getValue'" "true"
import kotlin.reflect.KProperty
class F {
operator fun setValue(x: X, property: KProperty<*>, i: Int) { }
operator fun getValue(x: X, property: KProperty<*>): Int {
TODO("Not yet implemented")
}
}
class X {
var f: Int by F()
}