16 lines
541 B
Plaintext
Vendored
16 lines
541 B
Plaintext
Vendored
// "Create member function 'getValue', function 'setValue'" "true"
|
|
class F {
|
|
fun getValue(x: X, propertyMetadata: PropertyMetadata): Int {
|
|
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
|
|
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()
|
|
}
|