5c5367d377
The following updates in the JVM/IR plugin were made: * Lots of refactoring with preparation for K/N support: commonization of transformations. * Improved error handling (checks for visibility constraints, appending message about usage constraints in case of an error). * Explicit requirements for the visibility of atomic properties: to prevent leaking they should be private/internal or be members of private/internal classes. * Fixed visibility of generated properties: volatile properties are always private and atomic updaters have the same visibility as the original atomic property. * Volatile fields are generated from scratch and original atomic properties are removed. * Delegated properties support is fixed (only declaration in the same scope is allowed). * Non-inline atomic extensions are forbidden. * For top-level atomics: only one wrapper class per file (with corresponding visibility) is generated. * Bug fixes. The corresponding tickets: https://github.com/Kotlin/kotlinx-atomicfu/issues/322 KT-60528 Merge-request: KT-MR-10579 Merged-by: Maria Sokolova <maria.sokolova@jetbrains.com>
39 lines
987 B
Kotlin
Vendored
39 lines
987 B
Kotlin
Vendored
import kotlinx.atomicfu.*
|
|
import kotlinx.atomicfu.locks.*
|
|
import kotlin.test.*
|
|
|
|
class LateinitPropertiesTest {
|
|
private val a: AtomicInt
|
|
private val head: AtomicRef<String>
|
|
private val dataRef: AtomicRef<Data>
|
|
private val lateIntArr: AtomicIntArray
|
|
private val lateRefArr: AtomicArray<String?>
|
|
|
|
private class Data(val n: Int)
|
|
|
|
init {
|
|
a = atomic(0)
|
|
head = atomic("AAA")
|
|
lateIntArr = AtomicIntArray(55)
|
|
val data = Data(77)
|
|
dataRef = atomic(data)
|
|
val size = 10
|
|
lateRefArr = atomicArrayOfNulls<String?>(size)
|
|
}
|
|
|
|
fun test() {
|
|
assertEquals(0, a.value)
|
|
assertTrue(head.compareAndSet("AAA", "BBB"))
|
|
assertEquals("BBB", head.value)
|
|
assertEquals(0, lateIntArr[35].value)
|
|
assertEquals(77, dataRef.value.n)
|
|
assertEquals(null, lateRefArr[5].value)
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
val testClass = LateinitPropertiesTest()
|
|
testClass.test()
|
|
return "OK"
|
|
}
|