File tree 2 files changed +2
-4
lines changed
analysis/decompiled/decompiler-to-psi/testData/builtins
libraries/stdlib/jvm/builtins
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,6 @@ package kotlin.concurrent.atomics
59
59
public constructor (array: kotlin.IntArray ) { /* compiled code */ }
60
60
61
61
public final val size: kotlin.Int /* compiled code */
62
- public final get
63
62
64
63
public final fun loadAt (index : kotlin.Int ): kotlin.Int { /* compiled code */ }
65
64
@@ -102,7 +101,6 @@ package kotlin.concurrent.atomics
102
101
public constructor (array: kotlin.LongArray ) { /* compiled code */ }
103
102
104
103
public final val size: kotlin.Int /* compiled code */
105
- public final get
106
104
107
105
public final fun loadAt (index : kotlin.Int ): kotlin.Long { /* compiled code */ }
108
106
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ public actual class AtomicIntArray {
28
28
/* *
29
29
* Returns the number of elements in the array.
30
30
*/
31
- public actual val size: Int get() = array.size
31
+ public actual val size: Int
32
32
33
33
/* *
34
34
* Atomically loads the value from the element of this [AtomicIntArray] at the given [index].
@@ -136,7 +136,7 @@ public actual class AtomicLongArray {
136
136
/* *
137
137
* Returns the number of elements in the array.
138
138
*/
139
- public actual val size: Int get() = array.size
139
+ public actual val size: Int
140
140
141
141
/* *
142
142
* Atomically loads the value from the element of this [AtomicLongArray] at the given [index].
You can’t perform that action at this time.
0 commit comments