Skip to content

Commit 2355e83

Browse files
committed
Merge pull request #16 from yeamour/patch-6
测试用例:修改bool数组时异常
2 parents 006688b + 067689a commit 2355e83

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)