1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Test change

This commit is contained in:
Brian Fiete 2020-07-21 13:14:20 -07:00
parent fed75dfa85
commit 03e09c4322

View file

@ -189,7 +189,10 @@ namespace Tests
[Test]
static void TestA()
{
ClassA ca = scope ClassA();
ClassA ca = (ClassA)typeof(ClassA).CreateObject().Value;
defer delete ca;
Test.Assert(ca.mA == 123);
Test.Assert(ca.mStr === "A");
ClassA2 ca2 = scope ClassA2();