summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1534-3.cs
blob: 6bcf6503ce9a21d3c8d11f57836fc8b2be45022b (plain)
1
2
3
4
5
6
7
8
9
10
// CS1534: Overloaded binary operator `+' takes two parameters
// Line: 6

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