[utils] Add check for ANDROID_UNIFIED_HEADERS to mono-compiler.h (#5742)
[mono.git] / mcs / errors / cs1661.cs
index f87c9333ab4957b50f91060ea358dd89673287de..f31dced91b59aba4c5aae62631cff55ef4abe6b3 100644 (file)
@@ -1,11 +1,11 @@
-// cs1661.cs: Anonymous method could not be converted to delegate `D' since there is a parameter mismatch\r
-// Line: 9\r
-\r
-delegate void D (int x);\r
-\r
-class X {\r
-       static void Main ()\r
-       {\r
-               D d2 = delegate (ref int x) {};\r
-       }\r
-}\r
+// CS1661: Cannot convert `anonymous method' to delegate type `D' since there is a parameter mismatch
+// Line: 9
+
+delegate void D (int x);
+
+class X {
+       static void Main ()
+       {
+               D d2 = delegate (ref int x) {};
+       }
+}