blob: 3aa2376edf08c499fba506479fd737bc81e7080e (
plain)
1
2
3
4
5
6
7
8
|
// CS0501: `C.operator !=(C, C)' must have a body because it is not marked abstract, extern, or partial
// Line: 6
class C
{
public static bool operator != (C l, C r);
public static bool operator == (C l, C r);
}
|