[amd64] Save missing register
[mono.git] / mcs / errors / cs0171-5.cs
1 // CS0171: Field `Test.v2' must be fully assigned before control leaves the constructor
2 // Line: 28
3
4 public struct V
5 {
6         public int x;
7 }
8
9 struct Test
10 {
11         public V v1;
12         public V v2;
13
14         public Test (int mm)
15         {
16                 v1 = new V ();
17         }
18
19         public static void Main ()
20         {
21         }
22 }