[xbuild] Fix bug #676671. Raise AnyEvent .
[mono.git] / mcs / errors / cs0457.cs
index 3b7ebc603d194224b0402552ac63796b56c6fb32..451615f8e51c5b313eaf59e68273b2f463b18503 100644 (file)
@@ -1,21 +1,21 @@
-// cs0457: Ambiguous user defined conversions `A.implicit operator byte(A)' and `A.implicit operator sbyte(A)' when converting from 'A' to 'int'\r
-// Line: 20\r
-\r
-class A\r
-{\r
-       public static implicit operator sbyte (A mask)\r
-       {\r
-               return 1;\r
-       }\r
-\r
-       public static implicit operator byte (A mask)\r
-       {\r
-               return 2;\r
-       }\r
-}\r
-\r
-class X\r
-{\r
-    static A a = null;\r
-    static object o = ~a;\r
-}\r
+// cs0457: Ambiguous user defined conversions `A.implicit operator byte(A)' and `A.implicit operator sbyte(A)' when converting from 'A' to 'int'
+// Line: 20
+
+class A
+{
+       public static implicit operator sbyte (A mask)
+       {
+               return 1;
+       }
+
+       public static implicit operator byte (A mask)
+       {
+               return 2;
+       }
+}
+
+class X
+{
+    static A a = null;
+    static object o = ~a;
+}