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