diff options
author | Arne Döring <arne.doering@gmx.net> | 2019-02-12 22:00:31 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-02-13 23:30:14 +0100 |
commit | 28394153aba1e1ec0410406392e26e1e7e2e681e (patch) | |
tree | 0f2f455db7375b8e2c1e57b56a7f7d950d955bab /tests/objects | |
parent | 304b1dd34bc52df29528c2a12f769cb59904db5a (diff) | |
download | Nim-28394153aba1e1ec0410406392e26e1e7e2e681e.tar.gz |
32 bit fixes (#10608)
Diffstat (limited to 'tests/objects')
-rw-r--r-- | tests/objects/tobject3.nim | 28 |
1 files changed, 1 insertions, 27 deletions
diff --git a/tests/objects/tobject3.nim b/tests/objects/tobject3.nim index a24a48c8b..0a3df02ea 100644 --- a/tests/objects/tobject3.nim +++ b/tests/objects/tobject3.nim @@ -1,10 +1,7 @@ discard """ output: '''TBar2 TFoo -16 -12 -16 -12''' +''' """ ## XXX this output needs to be adapated for VCC which produces different results. @@ -67,29 +64,6 @@ var aa = makeWindow() thisCausesError(dd, aa) -# bug #4763 -type - testObject_1 = object - size: int32 - value: int64 - - testObject_2 {.packed.} = object - size: int32 - value: int64 - - testObject_3[T] = object - size: int32 - value: T - - testObject_4 {.packed.} [T] = object - size: int32 - value: T - -echo sizeof(testObject_1) -echo sizeof(testObject_2) -echo sizeof(testObject_3[int64]) -echo sizeof(testObject_4[int64]) - # bug #5892 type Foo6 = distinct array[4, float32] |