Files
2024-02-16 10:19:38 +00:00

24 lines
281 B
Kotlin
Vendored

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