Updated test.

This commit is contained in:
Christoffer Lerno
2024-07-03 15:59:46 +02:00
parent ba5b045351
commit 210508fe4f

View File

@@ -12,7 +12,7 @@ fn void nested_struct()
{
Test2* array;
assert((uptr)&array[1] - (uptr)array == 32);
assert((uptr)&array[1] == Test2.sizeof);
assert((uptr)&array[1] - (uptr)array == Test2.sizeof);
assert(Test2.sizeof == 32);
assert(Test.sizeof == 16);
}