[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs0111-12.cs
blobdd48150bef861a9c8fed50260a5acc60e0ea7389
1 // CS0111: A member `S3.S3(string)' is already defined. Rename this member or use different parameter types
2 // Line: 6
3 // Compiler options: -langversion:experimental
5 struct S3 (string s)
7 public S3 (string s)
8 : this (1)
12 public S3 (int i)
13 : this ("")