2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1706-3.cs
blobf4f14546f8c99979d149ce939cef106aa0236d56
1 // CS1706: Anonymous methods and lambda expressions cannot be used in the current context
2 // Line: 8
4 delegate void D ();
6 class C
8 const object c = new D (delegate {});