d757847ed6
These tests are checking the specifics of the class-generated lambdas.
11 lines
301 B
Kotlin
Vendored
11 lines
301 B
Kotlin
Vendored
// LAMBDAS: CLASS
|
|
|
|
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
|