Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/delegateAccessors/var.kt.after
T
2015-11-02 18:23:42 +03:00

18 lines
568 B
Plaintext
Vendored

import kotlin.reflect.KProperty
// "Create member function 'getValue', function 'setValue'" "true"
class F {
operator fun getValue(x: X, property: KProperty<*>): Int {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
}
operator fun setValue(x: X, property: KProperty<*>, i: Int) {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}
class X {
var f: Int by F()
}