[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs1644-23.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 = () => { };