mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
9 lines
282 B
Kotlin
Vendored
9 lines
282 B
Kotlin
Vendored
operator fun (() -> String).getValue(thisRef: Any?, property: Any?) = this()
|
|
|
|
fun foo() {
|
|
val prop by { "OK" }
|
|
}
|
|
|
|
// METHOD : ObjectInLocalPropertyDelegateKt$foo$prop$2.invoke()Ljava/lang/String;
|
|
// VARIABLE : NAME=this TYPE=LObjectInLocalPropertyDelegateKt$foo$prop$2; INDEX=0
|