Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0111-7.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 518e27c70a154ed4ee56ea066b80c0c7bfc99319 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0111-7.cs: `T.T()' is already defined. Rename this member or use different parameter types
// Line : 6

class T {
	static T () {}
	static T () {}

	public static void Main ()
	{
	}
}