11 lines
230 B
Plaintext
Vendored
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()
|
|
}
|