Merge pull request #3766 from BrzVlad/feature-default-conc
[mono.git] / mcs / errors / cs1503.cs
index 577b9880200e45299df7460dde13cfbbd387d5bd..800722ea6c17194c51f5513632acc0e18af8c8fe 100644 (file)
@@ -1,17 +1,17 @@
-// CS1503: Argument `#1' cannot convert `int' expression to type `bool'\r
-// Line: 15\r
-\r
-class A\r
-{\r
-       public static void Foo (bool test)\r
-       {\r
-       }\r
-}\r
-\r
-class B\r
-{\r
-       public static void Main()\r
-       {\r
-               A.Foo (1);\r
-       }\r
-}\r
+// CS1503: Argument `#1' cannot convert `int' expression to type `bool'
+// Line: 15
+
+class A
+{
+       public static void Foo (bool test)
+       {
+       }
+}
+
+class B
+{
+       public static void Main()
+       {
+               A.Foo (1);
+       }
+}