2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0501-3.cs
blob3aa2376edf08c499fba506479fd737bc81e7080e
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);