[amd64] Save missing register
[mono.git] / mcs / errors / cs0815-3.cs
1 // CS0815: An implicitly typed local variable declaration cannot be initialized with `anonymous method'
2 // Line: 8
3
4 public class Test
5 {
6         static void Main ()
7         {
8                 var l = x => x + 1;
9         }
10 }
11