2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1065.cs
blob68f9cd260eea073e170b5ee2e24d8737d0f27c0a
1 // CS1065: Optional parameter is not valid in this context
2 // Line: 10
4 delegate void D (int i);
6 public class C
8 public static void Main ()
10 D d = delegate (int i = 9) { };