summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1706-3.cs
blob: f4f14546f8c99979d149ce939cef106aa0236d56 (plain)
1
2
3
4
5
6
7
8
9
// CS1706: Anonymous methods and lambda expressions cannot be used in the current context
// Line: 8

delegate void D ();

class C
{
	const object c = new D (delegate {});
}