Files
kotlin-fork/compiler/testData/ir/irText/expressions/kt37570.kt
T
2023-03-22 15:18:17 +00:00

15 lines
190 B
Kotlin
Vendored

// FIR_IDENTICAL
// IGNORE_BACKEND: JS_IR
// IGNORE_BACKEND: JS_IR_ES6
fun a() = "string"
class A {
val b: String
init {
a().apply {
b = this
}
}
}