1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Fixed do/while detection

This commit is contained in:
Brian Fiete 2025-02-23 06:59:30 -08:00
parent 546c4d7e7e
commit 188ff74128
2 changed files with 56 additions and 1 deletions

View file

@ -189,6 +189,14 @@ namespace Tests
for (var i in emptySpan.Reversed)
Test.FatalError();
do
{
}
while (false)
{
}
}
public static void TestEnumerator1(EnumeratorTest e)