You've already forked linux-packaging-mono
Imported Upstream version 3.12.0
Former-commit-id: cf92446697332992ec36726e78eb8703e1f259d7
This commit is contained in:
15
mcs/errors/cs0111-12.cs
Normal file
15
mcs/errors/cs0111-12.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
// CS0111: A member `S3.S3(string)' is already defined. Rename this member or use different parameter types
|
||||
// Line: 6
|
||||
|
||||
struct S3 (string s)
|
||||
{
|
||||
public S3 (string s)
|
||||
: this (1)
|
||||
{
|
||||
}
|
||||
|
||||
public S3 (int i)
|
||||
: this ("")
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user