Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / tests / gtest-407.cs
index 3d254a0c952aa27a896fd50f46927b282c0868a7..1e0e5a6dc72a5b5eef5bc8558c5be6d5b3da3c5d 100644 (file)
@@ -1,39 +1,39 @@
-using System;\r
-\r
-struct MyColor\r
-{\r
-       int v;\r
-\r
-       public MyColor (int v)\r
-       {\r
-               this.v = v;\r
-       }\r
-\r
-       public static bool operator == (MyColor left, MyColor right)\r
-       {\r
-               return left.v == right.v;\r
-       }\r
-\r
-       public static bool operator != (MyColor left, MyColor right)\r
-       {\r
-               return left.v != right.v;\r
-       }\r
-}\r
-\r
-public class NullableColorTests\r
-{\r
-       public static int Main ()\r
-       {\r
-               MyColor? col = null;\r
-               bool b = col == new MyColor (3);\r
-               Console.WriteLine (b);\r
-               if (b)\r
-                       return 1;\r
-                       \r
-               b = col != new MyColor (3);\r
-               if (!b)\r
-                       return 2;\r
-               \r
-               return 0;\r
-       }\r
-}\r
+using System;
+
+struct MyColor
+{
+       int v;
+
+       public MyColor (int v)
+       {
+               this.v = v;
+       }
+
+       public static bool operator == (MyColor left, MyColor right)
+       {
+               return left.v == right.v;
+       }
+
+       public static bool operator != (MyColor left, MyColor right)
+       {
+               return left.v != right.v;
+       }
+}
+
+public class NullableColorTests
+{
+       public static int Main ()
+       {
+               MyColor? col = null;
+               bool b = col == new MyColor (3);
+               Console.WriteLine (b);
+               if (b)
+                       return 1;
+                       
+               b = col != new MyColor (3);
+               if (!b)
+                       return 2;
+               
+               return 0;
+       }
+}