Implement MachineKey.Protect and MachineKey.Unprotect
[mono.git] / mcs / errors / cs8043.cs
1 // CS8043: `S.S(long)': Structs with primary constructor cannot specify default constructor initializer
2 // Line: 6
3
4 struct S (int x)
5 {
6         public S (long x)
7                 : this ()
8         {
9         }
10 }