2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1656-5.cs
blob763626bf55c09157b6b356cd5d74f5025dd08cbb
1 // CS1656: Cannot assign to `Method_1' because it is a `method group'
2 // Line: 14
4 public class Test
6 void Method_1 ()
10 public static void Main ()
12 Test t = new Test ();
14 t.Method_1 += delegate { };