summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1534.cs
blob: be381f85153359547006e109aeca1aafc0505e75 (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 d)
	{
		return null;
	}
}