Files
kotlin-fork/compiler/testData/ir/irText/firProblems/kt59102.kt.txt
T
Kirill Rakhman 4b85776405 [FIR] Fix completion of FirDelegatedConstructorCall
Before this fix, changes that were made to the arguments list by calling
argumentList.transformArguments() were overriden by replaceArgumentList.
This fixes reverses the order in which these calls are made.
This also aligns the logic between the completion of qualified accesses
and delegated constructor calls.

#KT-59102 Fixed
2023-06-13 09:47:58 +00:00

17 lines
225 B
Kotlin
Vendored

class XAlign {
constructor(bits: Long) /* primary */ {
super/*Any*/()
/* <init>() */
}
val bits: Long
field = bits
get
constructor() {
this/*XAlign*/(bits = 1.shl(bitCount = 1).toLong())
}
}