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

test-565.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f2ac9afefe9b5564a46aa480e025d89f39e3596 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Compiler options: -warn:4 -warnaserror

class T
{
	public new bool Equals (object obj)
	{
		return true;
	}

	public static void Main ()
	{ }
}