Implement MachineKey.Protect and MachineKey.Unprotect
[mono.git] / mcs / errors / cs0111-12.cs
1 // CS0111: A member `S3.S3(string)' is already defined. Rename this member or use different parameter types
2 // Line: 6
3
4 struct S3 (string s)
5 {
6         public S3 (string s)
7                 : this (1)
8         {
9         }
10
11         public S3 (int i)
12                 : this ("")
13         {
14         }
15 }