summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1534-2.cs
blob: 2339b533acb3705d6d8ef1c17c8ab14bae34c25c (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 * (C a, C b, C c, C d)
	{
		return null;
	}
}