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

9 lines
201 B
Plaintext
Vendored

// "Rename to 'getValue'" "true"
class CustomDelegate
operator fun CustomDelegate.getValue(thisRef: Any?, prop: PropertyMetadata): String = ""
class Example {
val a: String by CustomDelegate()
}