a1e86e8bfa
(cherry picked from commit a51d3fc)
18 lines
510 B
Plaintext
Vendored
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()
|
|
}
|