2010-02-09 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / 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);