1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-16 07:14:09 +02:00
Beef/IDE/Tests/Test1/src/Breakpoints02.bf

28 lines
288 B
Beef
Raw Normal View History

2019-08-23 11:56:54 -07:00
#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();
}
}
}