6 lines
113 B
Kotlin
Vendored
6 lines
113 B
Kotlin
Vendored
class MyProperty {
|
|
fun getValue(thisRef: Any?, desc: PropertyMetadata) = ":)"
|
|
}
|
|
|
|
val Any.ext by MyProperty()
|