4b85776405
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
17 lines
225 B
Kotlin
Vendored
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())
|
|
}
|
|
|
|
}
|