14 lines
335 B
Plaintext
Vendored
14 lines
335 B
Plaintext
Vendored
import kotlin.reflect.KProperty
|
|
|
|
// "Create member function 'getValue'" "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.
|
|
}
|
|
|
|
}
|
|
|
|
class X {
|
|
val f: Int by F()
|
|
}
|