1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-16 23:34:10 +02:00

Nullable fixes with !=

This commit is contained in:
Brian Fiete 2020-05-19 12:27:26 -07:00
parent bf80ec8897
commit 952e3aec58
4 changed files with 32 additions and 5 deletions

View file

@ -55,7 +55,7 @@ namespace Tests
Test.FatalError();
Test.Assert(ca?.mCondB?.mStr == null);
Test.Assert(!(ca?.mCondB?.mStr?.Length != 0));
Test.Assert(ca?.mCondB?.mStr?.Length != 0);
Test.Assert(!(ca?.mCondB?.mStr?.Length == 0));
if (let i = ca?.mCondB?.mInt)