1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-11 04:52:21 +02:00

Initial checkin

This commit is contained in:
Brian Fiete 2019-08-23 11:56:54 -07:00
parent c74712dad9
commit 078564ac9e
3242 changed files with 1616395 additions and 0 deletions

View file

@ -0,0 +1,27 @@
using System;
namespace Tests
{
class SizedArrays
{
[Test]
static void TestBasics()
{
int[3][2] val0 = .((1, 2), (3, 4), (5, 6));
Test.Assert(sizeof(decltype(val0)) == sizeof(int)*6);
Test.Assert(val0[0][0] == 1);
Test.Assert(val0[0][1] == 2);
Test.Assert(val0[1][0] == 3);
int[2] val1 = .(7, 8);
val0[1] = val1;
int[3][2] val2 = .((1, 2), (7, 8), (5, 6));
Test.Assert(val0 == val2);
val2[0][0] = 9;
Test.Assert(val0 != val2);
Test.Assert(val2[1] == val1);
}
}
}