Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/delegateAccessors/val.kt.after
T
2019-11-13 08:37:25 +09:00

14 lines
234 B
Plaintext
Vendored

import kotlin.reflect.KProperty
// "Create member function 'F.getValue'" "true"
class F {
operator fun getValue(x: X, property: KProperty<*>): Int {
TODO("Not yet implemented")
}
}
class X {
val f: Int by F()
}