2015-01-13 10:44:36 +00:00
|
|
|
// CS0111: A member `S3.S3(string)' is already defined. Rename this member or use different parameter types
|
|
|
|
// Line: 6
|
2015-04-07 09:35:12 +01:00
|
|
|
// Compiler options: -langversion:experimental
|
2015-01-13 10:44:36 +00:00
|
|
|
|
|
|
|
struct S3 (string s)
|
|
|
|
{
|
|
|
|
public S3 (string s)
|
|
|
|
: this (1)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public S3 (int i)
|
|
|
|
: this ("")
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|