mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-16 07:14:09 +02:00
24 lines
283 B
Beef
24 lines
283 B
Beef
![]() |
#pragma warning disable 168
|
||
|
|
||
|
namespace IDETest
|
||
|
{
|
||
|
class MemoryBreakpointTester
|
||
|
{
|
||
|
int mA;
|
||
|
|
||
|
public static void Test()
|
||
|
{
|
||
|
//MemoryBreakpointTester_Test
|
||
|
MemoryBreakpointTester mbt = scope .();
|
||
|
|
||
|
int a = 0;
|
||
|
mbt.mA++;
|
||
|
a++;
|
||
|
a++;
|
||
|
mbt.mA++;
|
||
|
a++;
|
||
|
a++;
|
||
|
}
|
||
|
}
|
||
|
}
|