1 // 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
4 delegate void D (int x
);
9 D d6
= delegate (int x
) { return x; }
; // Return type mismatch.