New tests.
[mono.git] / mcs / errors / cs1662.cs
index defcc6558af175d133548773e742d6890fd08c2e..f544fce765e605739e60c669a71cdb17f8bd2fda 100644 (file)
@@ -1,8 +1,6 @@
-// cs1662: Can not convert the anonymous method, as the returned value does not match the return type of the delegate
+// CS1662.cs: 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
-//
-// Return type mismatch.
-//
+
 delegate void D (int x);
 
 class X {