[amd64] Save missing register
[mono.git] / mcs / errors / cs0171-6.cs
1 // CS0171: Field `S.value' must be fully assigned before control leaves the constructor
2 // Line: 10
3
4 using System;
5
6 struct S
7 {
8         internal string value;
9
10         public S (int arg)
11         {
12                 if (arg > 0) {
13                         return;
14                 }
15
16                 throw new ApplicationException ();
17         }
18 }