Files
kotlin-fork/compiler/testData/ir/irText/classes/initValInLambda.kt
T
2021-11-12 12:53:32 +03:00

10 lines
133 B
Kotlin
Vendored

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