[xbuild] Fix bug #676671. Raise AnyEvent .
[mono.git] / mcs / errors / cs1688.cs
index 2fb30066bac4039a47b5cf4a9c6f5575e81bdda2..f9a3db3683cfb725716a5724e9fea329f157e481 100644 (file)
@@ -1,15 +1,15 @@
-// CS1688: Cannot convert anonymous method block without a parameter list to delegate type `C.WithOutParam' because it has one or more `out' parameters\r
-// Line: 10\r
-\r
-class C\r
-{\r
-       delegate void WithOutParam (out string value);\r
-\r
-    static void Main() \r
-    {\r
-        WithOutParam o = delegate\r
-                       { \r
-                               return;\r
-                       };\r
-    }\r
+// CS1688: Cannot convert anonymous method block without a parameter list to delegate type `C.WithOutParam' because it has one or more `out' parameters
+// Line: 10
+
+class C
+{
+       delegate void WithOutParam (out string value);
+
+    static void Main() 
+    {
+        WithOutParam o = delegate
+                       { 
+                               return;
+                       };
+    }
 }
\ No newline at end of file