Implement MachineKey.Protect and MachineKey.Unprotect
[mono.git] / mcs / errors / cs0843-2.cs
1 // CS0843: An automatically implemented property `S.A' must be fully assigned before control leaves the constructor. Consider calling the default struct contructor from a constructor initializer
2 // Line: 8
3
4 public struct S
5 {
6         public int A { get; set;}
7
8         public S (int a)
9         {
10                 this.A = a;
11         }
12 }