Moved from typeMaps to typeArgument list in IrMemberAccessCommon serialization

to reflect changes in IR.
This commit is contained in:
Alexander Gorshenev
2018-04-06 18:16:14 +03:00
committed by alexander-gorshenev
parent 6415734881
commit 0a911ed5bb
4 changed files with 48 additions and 50 deletions
+5
View File
@@ -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")
}