1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00
This commit is contained in:
Brian Fiete 2022-08-24 17:02:55 -07:00
parent f9d5b58102
commit f411c4cf4c

View file

@ -53,7 +53,7 @@ namespace Tests
ud.mInt16 = 234;
Test.Assert(sizeof(UnionD) == 6);
Test.Assert(alignof(UnionD) == 4);
Test.Assert(((int16*)&ud)[3] == 234);
Test.Assert(((int16*)&ud)[2] == 234);
}
}
}