Skip inlined lambdas when determining EnclosingMethod
#KT-6368 Fixed
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
import kotlin.properties.Delegates
|
||||
import java.util.HashMap
|
||||
|
||||
trait R {
|
||||
fun result(): String
|
||||
}
|
||||
|
||||
val a by Delegates.lazy {
|
||||
with(HashMap<String, R>()) {
|
||||
put("result", object : R {
|
||||
override fun result(): String = "OK"
|
||||
})
|
||||
this
|
||||
}
|
||||
}
|
||||
|
||||
fun box(): String {
|
||||
val r = a["result"]
|
||||
|
||||
// Check that reflection won't fail
|
||||
r.javaClass.getEnclosingMethod().toString()
|
||||
|
||||
return r.result()
|
||||
}
|
||||
Reference in New Issue
Block a user