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
12 changes: 11 additions & 1 deletion UnitTestDll/test_enum.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,18 @@ static void UnitTest_20()
MemoryStream str = new MemoryStream ();
str.Write (new byte[]{0}, 0, (int)ui);
}

static void UnitTest_21()
{
testStruct ts = new testStruct ();
ts.TestInt = 1;
string str = ts.TestInt.ToString ();
}


public struct testStruct
{
public int TestInt;
}

}