Merge pull request #3769 from evincarofautumn/fix-verify-before-allocs
[mono.git] / mcs / errors / cs1065.cs
1 // CS1065: Optional parameter is not valid in this context
2 // Line: 10
3
4 delegate void D (int i);
5
6 public class C
7 {
8         public static void Main ()
9         {
10                 D d = delegate (int i = 9) { };
11         }
12 }