f5f1aec47b
#KT-5977 Fixed
16 lines
525 B
Kotlin
16 lines
525 B
Kotlin
// "Create function 'get', function 'set' from usage" "true"
|
|
class F {
|
|
fun get(x: X, propertyMetadata: PropertyMetadata): Int {
|
|
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
|
|
fun set(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()
|
|
}
|