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:
parent
bda65a8774
commit
85fcca9c76
2 changed files with 15 additions and 5 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue