Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs1958.cs
1 // CS1958: Object and collection initializers cannot be used to instantiate a delegate 
2 // Line: 9
3 using System;
4
5 class Test
6 {
7         public static void Main ()
8         {
9                 var a = new Action (delegate { }) {
10                 };
11         }
12 }