Skip to content

Commit 067689a

Browse files
committed
测试用例:修改bool数组时异常
RT
1 parent 006688b commit 067689a

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

UnitTestDll/test_enum.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,12 @@ static void UnitTest_12()
8585
//tmp = m_IsDataReady[3];
8686

8787
}
88+
89+
static void UnitTest_13()
90+
{
91+
bool[] data = new bool[4] { true,true,true,true};
92+
data[0] = false;
93+
}
8894

8995
}
9096

0 commit comments

Comments
 (0)