9 lines
116 B
Kotlin
Vendored
9 lines
116 B
Kotlin
Vendored
class TestInitValInLambdaCalledOnce {
|
|
val x: Int
|
|
init {
|
|
1.run {
|
|
x = 0
|
|
}
|
|
}
|
|
}
|