[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / tests / gtest-629.cs
blob755222782a55483e21118c3e9cb93f907a92639d
1 // Compiler options: -unsafe
3 using System;
4 using System.Collections.Generic;
6 public class Program
8 public unsafe static void Main ()
10 var list = new List<object> () { "" };
11 fixed (char *c = (string)list[0]) {
15 var list2 = new List<object> () { null };
16 fixed (byte* p = (byte[])list2[0]) {