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

11 lines
232 B
Kotlin
Vendored

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