mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 20:42:21 +02:00
Added '->' operator, static indexer fix, RefCounted<T>
This commit is contained in:
parent
dd7986aaa9
commit
abd511a93d
14 changed files with 302 additions and 20 deletions
|
@ -709,6 +709,13 @@ namespace Tests
|
|||
Test.Assert(sA == 222);
|
||||
Val += 1000;
|
||||
Test.Assert(sA == 1222);
|
||||
|
||||
RefCounted<String> rcStr = .Create("Abc");
|
||||
Test.Assert(rcStr->Length == 3);
|
||||
rcStr->Clear();
|
||||
rcStr.Release();
|
||||
|
||||
//RefCounted<StructB> rcB = .Create();
|
||||
}
|
||||
|
||||
struct IntStruct
|
||||
|
@ -740,8 +747,6 @@ namespace Tests
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
[Test]
|
||||
public static void TestCompareWithCastOperator()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue