10 lines
133 B
Kotlin
Vendored
10 lines
133 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
class TestInitValInLambdaCalledOnce {
|
|
val x: Int
|
|
init {
|
|
1.run {
|
|
x = 0
|
|
}
|
|
}
|
|
}
|