Write enclosing method info for transformed objects
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package test
|
||||
|
||||
interface Z {
|
||||
fun a(): String
|
||||
}
|
||||
|
||||
inline fun test(crossinline z: () -> String) =
|
||||
object : Z {
|
||||
override fun a() = z()
|
||||
}
|
||||
Reference in New Issue
Block a user