[amd64] Save missing register
[mono.git] / mcs / errors / cs0170-5.cs
1 // CS0170: Use of possibly unassigned field `c'
2 // Line: 24
3
4 public class C
5 {
6         public int v;
7 }
8
9 public struct S
10 {
11         public C c;
12 }
13
14 public struct S2
15 {
16         S s;
17 }
18
19 public class Test
20 {
21         static void Main ()
22         {
23                 S s;
24                 int xx = s.c.v;
25         }
26 }