2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0815-3.cs
blob579420a9234839985e65305e991bba0bd989e2e6
1 // CS0815: An implicitly typed local variable declaration cannot be initialized with `lambda expression'
2 // Line: 9
5 public class Test
7 static void Main ()
9 var l = x => x + 1;