remove executable bit from {errors,tests}/*.cs
[mono.git] / mcs / errors / cs0501-3.cs
1 // CS0501: `C.operator !=(C, C)' must have a body because it is not marked abstract, extern, or partial\r
2 // Line: 6\r
3 \r
4 class C\r
5 {\r
6         public static bool operator != (C l, C r);\r
7         public static bool operator == (C l, C r);\r
8 }\r