Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/delegateAccessors/var.kt.after
T
2016-07-20 15:39:19 +03:00

18 lines
510 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 implemented") //To change body of created functions use File | Settings | File Templates.
}
operator fun setValue(x: X, property: KProperty<*>, i: Int) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}
class X {
var f: Int by F()
}