Files
kotlin-fork/idea/testData/quickfix/modifiers/deprecatedDelegatesGetSetExtension.kt.after
T

11 lines
230 B
Plaintext
Vendored

// "Rename to 'getValue'" "true"
import kotlin.reflect.KProperty
class CustomDelegate
operator fun CustomDelegate.getValue(thisRef: Any?, prop: KProperty<*>): String = ""
class Example {
val a: String by CustomDelegate()
}