[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs1503.cs
index 090b92d0417cf3b72d543134dc29f49fc82a4bd3..800722ea6c17194c51f5513632acc0e18af8c8fe 100644 (file)
@@ -1,17 +1,17 @@
-// CS1503: Argument 1: Cannot convert from `int' to `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
-}
\ No newline at end of file
+// 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);
+       }
+}