[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / errors / cs0171-5.cs
blob71ce7020cc16295a2e53a6bdd6c02c16685bbc99
1 // CS0171: Field `Test.v2' must be fully assigned before control leaves the constructor
2 // Line: 28
4 public struct V
6 public int x;
9 struct Test
11 public V v1;
12 public V v2;
14 public Test (int mm)
16 v1 = new V ();
19 public static void Main ()