[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs1644-32.cs
blob6def4c3f4ba586299e4fd38b296a3b514ce85266
1 // CS1644: Feature `lambda expressions' cannot be used because it is not part of the C# 2.0 language specification
2 // Line: 11
3 // Compiler options: -langversion:ISO-2
5 using System;
7 class C
9 public void Foo ()
11 Func<int, int> e = l => 1;