1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-03 23:05:59 +02:00

Fixed expression parsing issue from recent generic parsing change

This commit is contained in:
Brian Fiete 2022-02-08 11:26:24 -05:00
parent ceb400d573
commit 0c1ab7b668
2 changed files with 11 additions and 0 deletions

View file

@ -17,6 +17,12 @@ namespace Tests
{
Test.FatalError();
}
String inStr = "Abc";
bool b =
{
inStr.Length > 1 || 2 == 3
};
}
}
}