1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-27 03:58:01 +02:00

PopulateGlobalContainersList activeTypeDef fix

This commit is contained in:
Brian Fiete 2025-01-08 10:35:53 -08:00
parent bda65a8774
commit 85fcca9c76
2 changed files with 15 additions and 5 deletions

View file

@ -1,9 +1,21 @@
using System;
namespace Other
{
static
{
public const int sOther1 = 123;
}
}
using Other;
namespace Tests
{
class Globals
{
static uint8[sOther1] sArr;
public struct StructA : this(int64 a, int32 b)
{
}
@ -73,6 +85,8 @@ namespace Tests
Test.Assert(LibSpace.MethodA() == 100);
Test.Assert(LibSpace.MethodB() == 200);
Test.Assert(sArr.Count == 123);
}
}
}