[amd64] Add XMM registers to MonoContext on linux
[mono.git] / mcs / errors / cs1662.cs
1 // 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
2 // Line: 12
3
4 using System;
5
6 delegate int D (int i);
7
8 class X
9 {
10         static void Main ()
11         {
12                 D d = (int l) => Main ();
13         }
14 }