quote only work on lambda on net_4_0
[mcs.git] / errors / cs0501-3.cs
blobd3935a46a313fc370548fdcaff422128f8f0112a
1 // CS0501: `C.operator !=(C, C)' must have a body because it is not marked abstract, extern, or partial
2 // Line: 6
4 class C
6 public static bool operator != (C l, C r);
7 public static bool operator == (C l, C r);