Files
kotlin-fork/compiler/testData/ir/irText/expressions/kt37570.kt.txt
T
2020-11-26 00:14:13 +03:00

27 lines
316 B
Plaintext
Vendored

fun a(): String {
return "string"
}
class A {
constructor() /* primary */ {
TODO("IrDelegatingConstructorCall")
/* InstanceInitializerCall */
}
val b: String
get
init {
a().apply<String>(block = local fun String.<anonymous>() {
#b = <this>
}
) /*~> Unit */
}
}