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: cbe133a3af1c81ccb256cd7aa3d97a1139d298c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0216.cs: The operator `X.operator <(X, int)' requires a matching operator `>' to also be defined
// Line:
class X {
	public static X operator < (X a, int b)
	{
		return null;
	}

	static void Main () {
	}
}