b454fcc1e0
This is needed to avoid clashes between different dumps from different handlers
19 lines
239 B
Plaintext
Vendored
19 lines
239 B
Plaintext
Vendored
class TestInitValInLambdaCalledOnce {
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
val x: Int
|
|
get
|
|
|
|
init {
|
|
1.run<Int, Unit>(block = local fun Int.<anonymous>() {
|
|
<this>.#x = 0
|
|
}
|
|
)
|
|
}
|
|
|
|
}
|