1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-15 23:04:09 +02:00
Beef/IDEHelper/Tests/src/Loops.bf

17 lines
133 B
Beef
Raw Normal View History

2020-12-06 09:06:14 -08:00
using System;
namespace Tests
{
class Loops
{
[Test]
public static void TestBasics()
{
while (false)
{
}
}
}
}