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

cs0216.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca7db926d23355d642f521c592e2075f40246b27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0216.cs: If you define operator <, you also need to define >
// Line:
class X {
	public static X operator < (X a, int b)
	{
		return null;
	}

	static void Main () {
	}
}