Files
kotlin-fork/compiler/testData/ir/irText/classes/initValInLambda.kt
T
2019-12-20 15:12:37 +03:00

9 lines
116 B
Kotlin
Vendored

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