Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions UnitTestDll/test_enum.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System.Text;
using UnitTest;
using System.Reflection;
using System.IO;

namespace UnitTestDll
{
Expand Down Expand Up @@ -110,6 +111,13 @@ static void UnitTest_19()
object obj = 1;
Test(obj);
}

static void UnitTest_20()
{
uint ui = 1;
MemoryStream str = new MemoryStream ();
str.Write (new byte[]{0}, 0, (int)ui);
}
}


Expand Down