1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

Fixed while(false) loop

This commit is contained in:
Brian Fiete 2020-12-06 09:06:14 -08:00
parent 35c9cba898
commit 8d3b0d9e59
2 changed files with 17 additions and 1 deletions

View file

@ -0,0 +1,16 @@
using System;
namespace Tests
{
class Loops
{
[Test]
public static void TestBasics()
{
while (false)
{
}
}
}
}