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:
parent
bf80ec8897
commit
952e3aec58
4 changed files with 32 additions and 5 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue