Files
kotlin-fork/compiler/testData/ir/irText/classes/initValInLambda.kt.txt
T
2024-02-16 10:19:38 +00:00

20 lines
240 B
Kotlin
Vendored

class TestInitValInLambdaCalledOnce {
val x: Int
get
init {
1.run<Int, Unit>(block = local fun Int.<anonymous>() {
<this>.#x = 0
}
)
}
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}