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: 3dddcd8ef854be1eadfd46aaaa846ea05585e395 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs111-7.cs : Class `T' already contains a definition with the same return value and parameter types for method `Foo'
// Line : 6

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

	public static void Main ()
	{
	}
}