[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1656-5.cs
1 // CS1656: Cannot assign to `Method_1' because it is a `method group'
2 // Line: 14
3
4 public class Test
5 {
6         void Method_1 ()
7         {
8         }
9         
10         public static void Main ()
11         {
12                 Test t = new Test ();
13                 
14                 t.Method_1 += delegate {  };
15         }
16 }