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: c218c51f20d929f4f68e9c902d3eef64fe40fa3a (plain)
1
2
3
4
5
6
7
8
9
// cs0216.cs: If you define operator <, you also need to define >
// Line:
class X {
	public static X operator < (X a, int b)
	{
		return null;
	}
}