9 lines
201 B
Plaintext
Vendored
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()
|
|
}
|