Merge branch 'main' into generic-edge-cases

This commit is contained in:
Smaug123
2025-08-24 20:27:39 +01:00
14 changed files with 257 additions and 344 deletions

View File

@@ -124,9 +124,12 @@ public class TestInitobj
{
ObjectRef = new object(),
StringRef = "Hello",
ArrayRef = new int[] { 1, 2, 3 },
ArrayRef = new int[3],
ValueField = 42
};
c.ArrayRef[0] = 1;
c.ArrayRef[1] = 2;
c.ArrayRef[2] = 3;
// Verify initial values
if (c.ObjectRef == null) return 30;