blob: 800ea4a9731ebc04d5eb1d9231911138484d2e9d [file] [log] [blame]
// FIR_IDENTICAL
fun a() = "string"
class A {
val b: String
init {
a().apply {
b = this
}
}
}