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

cs0563.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af369883b2cf835fdea3fb24b3aff4a89c51f62d (plain)
1
2
3
4
5
6
7
// cs0563.cs: One of the parameters to the binary operator should be the containing type
// Line: 4
class X {
	public static int operator + (int a, int b)
	{
	}
}