[backport] fix #11320 (#11538)

* [backport] fix #11320
* fix test for 32 bit test
This commit is contained in:
Arne Döring
2019-07-03 08:00:40 +02:00
committed by Andreas Rumpf
parent 0a1cb631a2
commit 20d0ef8afb
4 changed files with 17 additions and 6 deletions

View File

@@ -536,3 +536,16 @@ proc main() =
typeProcessing(mylocal)
main()
# issue #11320 use UncheckedArray
type
Payload = object
something: int8
vals: UncheckedArray[int32]
proc payloadCheck() =
doAssert offsetOf(Payload, vals) == 4
doAssert sizeOf(Payload) == 4
payloadCheck()