Merge pull request #3586 from henricm/fix-win-uri-tests
[mono.git] / mcs / errors / cs1662.cs
index 419048631c2a6425174e4b861ba3b2114af28b90..7035c189cec1d09a36e8a1abf3be6712d3ffb0b8 100644 (file)
@@ -1,11 +1,14 @@
-// CS1662: Cannot convert `anonymous method' to delegate type `D' because some of the return types in the block are not implicitly convertible to the delegate return type
-// Line: 11
+// CS1662: Cannot convert `lambda expression' to delegate type `D' because some of the return types in the block are not implicitly convertible to the delegate return type
+// Line: 12
 
-delegate void D (int x);
+using System;
 
-class X {
+delegate int D (int i);
+
+class X
+{
        static void Main ()
        {
-               D d6 = delegate (int x) { return x; }; // Return type mismatch.
+               D d = (int l) => Main ();
        }
 }