13 lines
376 B
Plaintext
Vendored
13 lines
376 B
Plaintext
Vendored
// "Create member function 'setValue'" "true"
|
|
class F {
|
|
fun getValue(x: X, propertyMetadata: PropertyMetadata): Int = 1
|
|
|
|
fun setValue(x: X, propertyMetadata: PropertyMetadata, i: Int) {
|
|
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
}
|
|
|
|
class X {
|
|
var f: Int by F()
|
|
}
|