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
@@ -0,0 +1,8 @@
import kotlinx.cinterop.*
fun main(args: Array<String>) {
memScoped {
val bufferLength = 100L
val buffer = allocArray<ByteVar>(bufferLength)
}
println("OK")
}