Moved from typeMaps to typeArgument list in IrMemberAccessCommon serialization
to reflect changes in IR.
This commit is contained in:
committed by
alexander-gorshenev
parent
6415734881
commit
0a911ed5bb
@@ -2343,6 +2343,11 @@ task serialized_default_args(type: LinkKonanTest) {
|
||||
goldValue = "SomeDataClass(first=17, second=666, third=23)\n"
|
||||
}
|
||||
|
||||
task serialized_no_typemap(type: RunStandaloneKonanTest) {
|
||||
source = "serialization/regression/no_type_map.kt"
|
||||
goldValue = "OK\n"
|
||||
}
|
||||
|
||||
task testing_annotations(type: RunStandaloneKonanTest) {
|
||||
source = "testing/annotations.kt"
|
||||
flags = ['-tr']
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
import kotlinx.cinterop.*
|
||||
fun main(args: Array<String>) {
|
||||
memScoped {
|
||||
val bufferLength = 100L
|
||||
val buffer = allocArray<ByteVar>(bufferLength)
|
||||
}
|
||||
println("OK")
|
||||
}
|
||||
Reference in New Issue
Block a user