summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1065.cs
blob: 68f9cd260eea073e170b5ee2e24d8737d0f27c0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS1065: Optional parameter is not valid in this context
// Line: 10

delegate void D (int i);

public class C
{
	public static void Main ()
	{
		D d = delegate (int i = 9) { };
	}
}