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

18 lines
366 B
Plaintext
Vendored

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