Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / errors / cs1661-2.cs
index d7ed5a505f147d8afc027d5d66840a903340f866..a7035ef01951051449f0857d98e2c53cdaafc262 100644 (file)
@@ -1,7 +1,6 @@
 // CS1661: Cannot convert `lambda expression' to delegate type `C.WithOutParam' since there is a parameter mismatch
 // Line: 10
 
-
 class C
 {
        delegate void WithOutParam (out string value);
@@ -9,5 +8,5 @@ class C
        static void Main() 
        {
                WithOutParam o = (string l) => { return; };
-    }
+       }
 }