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

cs1535.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 75e15298ba9640921d7df96c66409e8368f50f7f (plain)
1
2
3
4
5
6
7
8
9
10
// cs01535.cs: Overloaded unary operator '--' takes one parameter
// Line: 6

class C
{
	public static C operator -- ()
	{
		return null;
	}
}