[KLIB tool] Update Kotlin/Native C-interop tests
^KT-62340
This commit is contained in:
committed by
Space Team
parent
07767f88e2
commit
ab814e1600
+20
-8
@@ -1,10 +1,22 @@
|
||||
library {
|
||||
// module name: <pod1.def>
|
||||
|
||||
package pod1 {
|
||||
var B: Int
|
||||
@CCall(id = "knifunptr_pod10_B_getter") get
|
||||
@CCall(id = "knifunptr_pod11_B_setter") set
|
||||
var C: Int
|
||||
@CCall(id = "knifunptr_pod12_C_getter") get
|
||||
@CCall(id = "knifunptr_pod13_C_setter") set
|
||||
library fragment {
|
||||
// package name: pod1
|
||||
|
||||
package {
|
||||
|
||||
public final var B: kotlin/Int
|
||||
@kotlinx/cinterop/internal/CCall(id = "knifunptr_pod10_B_getter")
|
||||
public final /* non-default */ external get
|
||||
@kotlinx/cinterop/internal/CCall(id = "knifunptr_pod11_B_setter")
|
||||
public final /* non-default */ external set(value: kotlin/Int)
|
||||
|
||||
public final var C: kotlin/Int
|
||||
@kotlinx/cinterop/internal/CCall(id = "knifunptr_pod12_C_getter")
|
||||
public final /* non-default */ external get
|
||||
@kotlinx/cinterop/internal/CCall(id = "knifunptr_pod13_C_setter")
|
||||
public final /* non-default */ external set(value: kotlin/Int)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user