1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-15 14:54:09 +02:00
Beef/IDE/Tests/Test1/src/Breakpoints02.bf
2019-08-23 11:56:54 -07:00

27 lines
288 B
Beef

#pragma warning disable 168
namespace IDETest
{
class Breakpoints02
{
static void MethodA()
{
int a = 0;
for (int i < 3)
{
a++;
//MethodA_1
a++;
//MethodA_2
a++;
a++;
}
}
public static void Test()
{
//Test_Start
MethodA();
}
}
}