Files
kotlin-fork/idea/testData/quickfix/modifiers/deprecatedDelegatesGetSetExtension.kt
T
2015-10-16 22:20:06 +03:00

9 lines
203 B
Kotlin
Vendored

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