// cs01534.cs: Overloaded binary operator '*' takes two parameters // Line: 6 class C { public static C operator * (C a, C b, C d) { return null; } }