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: 1427d34541599d072acff96db8afa651495c56b8 (plain)
1
2
3
4
5
6
7
8
9
10
// cs1535.cs: Overloaded unary operator `--' takes one parameter
// Line: 6

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