2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1644-13.cs
blobd5103660edbef8503a8f30a28939b00c32c6ada2
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 class C
7 delegate void D ();
9 public void Foo ()
11 D e = () => { };