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

12 lines
187 B
Kotlin
Vendored

// FIR_IDENTICAL
// IGNORE_BACKEND: JS_IR
// IGNORE_BACKEND: JS_IR_ES6
class TestInitValInLambdaCalledOnce {
val x: Int
init {
1.run {
x = 0
}
}
}